Exemplo n.º 1
0
        // Given a Game ID, allow a Venue Owner to accept a previously rejected game
        public Game AcceptGame(int gameId)
        {
            Game game = GetGameById(gameId);

            _gameRepository.AcceptGame(game);
            return(game);
        }