Example #1
0
 public DataCrawler()
 {
     Summoners = new SummonerStore(context);
     Matches   = new MatchStore(context);
     Champions = new ChampionStore(context);
     Items     = new ItemStore(context);
 }
Example #2
0
 public DataCrawler(List <APIKey> keys) : base()
 {
     Summoners = new SummonerStore(context);
     Matches   = new MatchStore(context);
     Champions = new ChampionStore(context);
     //Items = new ItemStore(context);
     this.Keys = keys;
 }