mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-31 04:52:51 +00:00
ui nog wa aanpasse en we zijn gucci
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Globals.classes;
|
||||
|
||||
namespace Globals.Interfaces
|
||||
{
|
||||
public interface IData
|
||||
{
|
||||
List<Person> getPersons();
|
||||
List<Game> getGames();
|
||||
List<Ploeg> getPloegen();
|
||||
List<Bet> getBets();
|
||||
void saveBets(List<Bet> b);
|
||||
void saveGames(List<Game> g);
|
||||
void savePloegen(List<Ploeg> p);
|
||||
void savePersons(List<Person> p);
|
||||
}
|
||||
}
|
@@ -6,24 +6,22 @@ namespace Globals.Interfaces
|
||||
{
|
||||
public interface ILogic
|
||||
{
|
||||
List<Person> persons { get; set; }
|
||||
List<Bet> bets { get; set; }
|
||||
List<Ploeg> ploegen { get; set; }
|
||||
List<Game> games { get; set; }
|
||||
Person getPerson(int id);
|
||||
Bet getBet(int id);
|
||||
Ploeg getPloeg(int id);
|
||||
Game getGame(int id);
|
||||
void addPloeg(Ploeg p);
|
||||
void addGame(Game g);
|
||||
|
||||
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();
|
||||
void updateGame(Game g);
|
||||
void updatePerson(Person p);
|
||||
Person getPersonByString(string s);
|
||||
Ploeg getPloegByString(string s);
|
||||
Game getGameByString(string s);
|
||||
Bet getBetByString(string s);
|
||||
}
|
||||
}
|
||||
|
@@ -3,7 +3,6 @@ namespace Globals.Interfaces
|
||||
{
|
||||
public interface IPloeg
|
||||
{
|
||||
int Id { get; set; }
|
||||
string naam { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user