mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-30 12:32:43 +00:00
voila
This commit is contained in:
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