Beispiel #1
0
        public async Task <bool> FinishTheGame(string GameId)
        {
            var result = await _gameLogicService.FinishTheGame(GameId);

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

            return(result);
        }