This commit is contained in:
Michiel.VanDorpe
2019-03-13 16:37:03 +01:00
parent 10cdcbbd00
commit 60eb72bd30
99 changed files with 5061 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
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;
}
}
}
}