Example #1
0
 public void Create(string leagueId, GameVewModel model)
 {
     _gamesRepository.Create(leagueId, model);
 }
Example #2
0
 public void Update(string leagueId, string gameId, GameVewModel model)
 {
     _gamesRepository.Update(leagueId, gameId, model);
 }