Ejemplo n.º 1
0
 public LoLApiParserNode(LolApiServerRegion region)
 {
     _parsingRegion       = region;
     _spectatorHandler    = new SpectatorDataHandler(ApiKey, ApiRegionString);
     _matchDetailsHandler = new MatchDetailsDataHandler(ApiKey, ApiRegionString);
 }
Ejemplo n.º 2
0
        // Оберточки
        private SpectatorGamesResponse GetFeaturedMatches(SpectatorDataHandler apiDataHandler)
        {
            var response = apiDataHandler.GetFeaturedGames() as SpectatorGamesResponse;

            return(response);
        }