Beispiel #1
0
        public async Task <GameLogicViewModel> StartNewGameRound(string currentGameId)
        {
            var result = await _gameLogicService.StartNewGameRound(currentGameId);

            return(result);
        }
        public async Task <GameLogicViewModel> StartNewGameRound([FromQuery] string gameId)
        {
            var result = await _gameLogicService.StartNewGameRound(gameId);

            return(result);
        }