TournamentViewer is working but no save yet
Interface cganged
This commit is contained in:
@ -11,6 +11,7 @@ namespace TrackerLibrary.DataAccess
|
||||
PersonModel CreatePerson(PersonModel model);
|
||||
TeamModel CreateTeam(TeamModel model);
|
||||
void CreateTournament(TournamentModel model);
|
||||
void UpdateMatchup(MatchupModel model);
|
||||
List<TeamModel> GetTeam_All();
|
||||
List<PersonModel> GetPerson_All();
|
||||
List<TournamentModel> GetTournament_All();
|
||||
|
||||
@ -296,5 +296,10 @@ namespace TrackerLibrary.DataAccess
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
public void UpdateMatchup(MatchupModel model)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -131,5 +131,10 @@ namespace TrackerLibrary.DataAccess
|
||||
.LoadFile()
|
||||
.ConvertToTournamentModels(TeamFile, PeopleFile, PrizesFile);
|
||||
}
|
||||
|
||||
public void UpdateMatchup(MatchupModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user