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

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