Files
cs-oo-project/Online Gokkantoor/Globals/Interfaces/IData.cs
Beppe df39b0392c yup
2019-07-04 01:05:11 +02:00

19 lines
433 B
C#

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);
}
}