private MatchTimeLineResponse GetMatchTimeLineByMatchId(MatchDetailsDataHandler matchDetailsHandler, long matchId)
        {
            var response = matchDetailsHandler.GetMatchTimelineByMatchId(matchId) as MatchTimeLineResponse;

            return(response);
        }
 public LoLApiParserNode(LolApiServerRegion region)
 {
     _parsingRegion       = region;
     _spectatorHandler    = new SpectatorDataHandler(ApiKey, ApiRegionString);
     _matchDetailsHandler = new MatchDetailsDataHandler(ApiKey, ApiRegionString);
 }
        private MatchDetailsResponse GetMatchByMatchId(MatchDetailsDataHandler apiDataHandler, long matchId)
        {
            var response = apiDataHandler.GetMatchByMatchId(matchId) as MatchDetailsResponse;

            return(response);
        }