コード例 #1
0
 public Task <bool> CreateGame([FromBody] Models.Squad.CRUD.Game game)
 {
     _logger.Debug("Requesting to create a new game");
     return(_squadRepository.CreateGameAsync(game));
 }