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 GetBets(); Game getGame(int id); List GetGames(); Person getPerson(int id); List GetPeople(); Ploeg getPloeg(string naam); List GetPloegen(); PloegInMatch GetPloegInMatch(int id); List GetPloegInMatches(); void save(); } }