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:
48
Online Gokkantoor/LogicLayer/Wedstrijden.cs
Normal file
48
Online Gokkantoor/LogicLayer/Wedstrijden.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using DataLaag.Interfaces;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using static DataLaag.Enums;
|
||||
|
||||
namespace LogicLayer
|
||||
{
|
||||
public class Wedstrijden : IFWedstrijden
|
||||
{
|
||||
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 double geldThuisPloeg { get; set; }
|
||||
public double geldGelijk { get; set; }
|
||||
public double geldUitPloeg { get; set; }
|
||||
|
||||
|
||||
public Wedstrijden(int wedstrijd_ID, string thuisPloeg, string uitPloeg, int score_ThuisPloeg, int score_UitPloeg, double geldThuisPloeg, double geldGelijk, double geldUitPloeg)
|
||||
{
|
||||
this.wedstrijd_ID = wedstrijd_ID;
|
||||
this.thuisPloeg = thuisPloeg;
|
||||
this.uitPloeg = uitPloeg;
|
||||
this.score_ThuisPloeg = score_ThuisPloeg;
|
||||
this.score_UitPloeg = score_UitPloeg;
|
||||
this.geldThuisPloeg = geldThuisPloeg;
|
||||
this.geldGelijk = geldGelijk;
|
||||
this.geldUitPloeg = geldUitPloeg;
|
||||
}
|
||||
|
||||
public Gokken GetWinnaar()
|
||||
{
|
||||
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