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)

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>

View File

@@ -34,6 +34,11 @@ namespace LogicLayer
throw new Exception("Foutieve ingave: " + ex);
}
}
public override string ToString()
{
return base.ToString();
}
}
}