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,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static DataLaag.Enums;
namespace DataLaag.Interfaces
{
public interface IFKeuze
{
int match_ID { get; set; }
int speler_ID { get; set; }
double inzet { get; set; }
Gokken gok { get; set; }
}
}

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataLaag.Interfaces
{
public interface IFPersoon
{
int persoon_ID { get; set; }
string voorNaam { get; set; }
string naam { get; set; }
string adres { get; set; }
string gsm { get; set; }
double balans { get; set; }
}
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static DataLaag.Enums;
namespace DataLaag.Interfaces
{
public interface IFWedstrijden
{
int wedstrijd_ID { get; set; }
string thuisPloeg { get; set; }
string uitPloeg { get; set; }
int score_ThuisPloeg { get; set; }
int score_UitPloeg { get; set; }
Gokken GetWinnaar();
}
}