mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 03:52:45 +00:00
33 lines
763 B
C#
33 lines
763 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using static Logic.General;
|
|
|
|
namespace Logic
|
|
{
|
|
public class Wedstrijden
|
|
{
|
|
public int Wedstrijd_ID { get; set; }
|
|
public string ThuisPloeg { get; set; }
|
|
public string UitPloeg { get; set; }
|
|
public int Score_ThuisPloeg { get; set; }
|
|
public int Score_UitPloeg { get; set; }
|
|
|
|
public Gokken Winnaar()
|
|
{
|
|
if(Score_ThuisPloeg > Score_UitPloeg)
|
|
{
|
|
return Gokken.ThuisPloeg;
|
|
}else if(Score_UitPloeg > Score_ThuisPloeg)
|
|
{
|
|
return Gokken.Uitploeg;
|
|
}
|
|
else
|
|
{
|
|
return Gokken.Gelijk;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|