mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 20:12:40 +00:00
voila
This commit is contained in:
17
Online Gokkantoor/DataLaag/Interfaces/IFKeuze.cs
Normal file
17
Online Gokkantoor/DataLaag/Interfaces/IFKeuze.cs
Normal 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; }
|
||||
}
|
||||
}
|
18
Online Gokkantoor/DataLaag/Interfaces/IFPersoon.cs
Normal file
18
Online Gokkantoor/DataLaag/Interfaces/IFPersoon.cs
Normal 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; }
|
||||
}
|
||||
}
|
19
Online Gokkantoor/DataLaag/Interfaces/IFWedstrijden.cs
Normal file
19
Online Gokkantoor/DataLaag/Interfaces/IFWedstrijden.cs
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user