This commit is contained in:
Beppe
2019-07-04 01:05:11 +02:00
parent 60eb72bd30
commit df39b0392c
67 changed files with 2147 additions and 31 deletions

View File

@@ -113,37 +113,14 @@ namespace LogicLayer
keuzes.Add(new Keuze(128, 1, 0.15, Gokken.Thuisploeg));
}
public List<string> GetGebruikers()
public List<Persoon> GetGebruikers()
{
List<string> lijst = new List<string>();
if (personen != null) {
foreach(Persoon p in personen)
{
lijst.Add(p.persoon_ID+":"+p.naam + " " + p.voorNaam);
}
}
else
{
lijst.Add("None");
}
return lijst;
return personen;
}
public List<string> GetWedstrijden()
public List<Wedstrijden> GetWedstrijden()
{
List<string> temp = new List<string>();
if (personen != null)
{
foreach (Wedstrijden w in wedstrijden)
{
temp.Add( w.thuisPloeg + " - " + w.uitPloeg);
}
}
else
{
temp.Add("None");
}
return temp;
return wedstrijden;
}
public List<string> GetGeldVerdubbeling(int ID)