Esempio n. 1
0
        public Player AddGame([FromBody] Game game)
        {
            var gameId = _gameRepository.Add(game);

            return(_roundRepository.NextRound(gameId));
        }
 public Player NextRound(int gameId)
 {
     return(_roundRepository.NextRound(gameId));
 }