Exemple #1
0
 public Radarr(ICacheManager cacheManager, IRadarrV3Proxy radarrV3Proxy, IConfigFileProvider configFileProvider, IAppIndexerMapService appIndexerMapService, Logger logger)
     : base(appIndexerMapService, logger)
 {
     _schemaCache        = cacheManager.GetCache <List <RadarrIndexer> >(GetType());
     _radarrV3Proxy      = radarrV3Proxy;
     _configFileProvider = configFileProvider;
 }
Exemple #2
0
 public RadarrImport(IRadarrV3Proxy radarrV3Proxy,
                     IImportListStatusService importListStatusService,
                     IConfigService configService,
                     IParsingService parsingService,
                     Logger logger)
     : base(importListStatusService, configService, parsingService, logger)
 {
     _radarrV3Proxy = radarrV3Proxy;
 }