mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-30 04:22:42 +00:00
voila
This commit is contained in:
32
Blok2 Online Gokkantoor/ClassLibrary1/Wedstrijden.cs
Normal file
32
Blok2 Online Gokkantoor/ClassLibrary1/Wedstrijden.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user