예제 #1
0
 public Task <bool> UpdateGame([FromBody] Models.Squad.CRUD.Game game)
 {
     _logger.Debug("Requesting to update a game with id {gameId}", game.Id);
     return(_squadRepository.UpdateGameAsync(game));
 }