Files
cs-oo-project/Online Gokkantoor/Globals/Interfaces/ILogic.cs
2019-08-12 18:15:17 +02:00

28 lines
691 B
C#

using System;
using System.Collections.Generic;
using Globals.classes;
namespace Globals.Interfaces
{
public interface ILogic
{
void addBet(Bet b);
void addGame(Game g);
void addPerson(Person p);
void addPloeg(Ploeg p);
void addPloegInMatch(PloegInMatch p);
Bet getBet(int id);
List<Bet> GetBets();
Game getGame(int id);
List<Game> GetGames();
Person getPerson(int id);
List<Person> GetPeople();
Ploeg getPloeg(string naam);
List<Ploeg> GetPloegen();
PloegInMatch GetPloegInMatch(int id);
List<PloegInMatch> GetPloegInMatches();
void save();
}
}