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