public MatchDataCollectionService(IRiotApi riotApi,
                                   IThrottledRequestHelper throttledRequestHelper,
                                   IServiceProvider serviceProvider)
 {
     _riotApi = riotApi;
     _throttledRequestHelper = throttledRequestHelper;
     _serviceProvider        = serviceProvider;
 }
Exemple #2
0
 public MatchDataCollectionService(IRiotApi riotApi, ILogging logging
                                   , IThrottledRequestHelper throttledRequestHelper, IServiceScopeFactory serviceScopeFactory)
 {
     _riotApi                = riotApi;
     _serviceScopeFactory    = serviceScopeFactory;
     _logging                = logging;
     _throttledRequestHelper = throttledRequestHelper;
 }