using System; using System.Collections.Generic; using System.Text; using TrackerLibrary.Models; namespace TrackerLibrary.DataAccess { public interface IDataConnection { PrizeModel CreatePrize(PrizeModel model); PersonModel CreatePerson(PersonModel model); TeamModel CreateTeam(TeamModel model); void CreateTournament(TournamentModel model); List GetTeam_All(); List GetPerson_All(); List GetTournament_All(); } }