Esempio n. 1
0
        public async Task <TwitchGameCategory> GetGameId(string gameTitle)
        {
            if (string.IsNullOrEmpty(gameTitle))
            {
                return(null);
            }

            return(await _gameDirectoryDb.GetGameId(gameTitle));
        }
Esempio n. 2
0
 public async Task <TwitchGameCategory> GetGameId(string gameTitle)
 {
     return(await _gameDirectoryDb.GetGameId(gameTitle));
 }
Esempio n. 3
0
 public async Task <GameList> GetGameId(string gameTitle)
 {
     return(await _gameDirectoryDb.GetGameId(gameTitle));
 }