using System; using System.Collections.Generic; using Globals.classes; namespace Globals.Interfaces { public interface IData { List getPersons(); List getGames(); List getPloegen(); List getBets(); void saveBets(List b); void saveGames(List g); void savePloegen(List p); void savePersons(List p); } }