Exemple #1
0
        public async Task <int> CreateNewGame(CreateNewGameGameView startGameViewModel)
        {
            int gameId = await _gameLogicService.CreateNewGame(startGameViewModel);

            return(gameId);
        }