Exemplo n.º 1
0
 public Deemix(IDeemixProxy proxy,
               IConfigService configService,
               IDiskProvider diskProvider,
               IRemotePathMappingService remotePathMappingService,
               Logger logger)
     : base(configService, diskProvider, remotePathMappingService, logger)
 {
     _proxy = proxy;
 }
Exemplo n.º 2
0
 public Deemix(ICacheManager cacheManager,
               IDeemixProxy deemixProxy,
               IHttpClient httpClient,
               IIndexerStatusService indexerStatusService,
               IConfigService configService,
               IParsingService parsingService,
               Logger logger)
     : base(httpClient, indexerStatusService, configService, parsingService, logger)
 {
     _userCache   = cacheManager.GetCache <DeemixUser>(typeof(DeemixProxy), "user");
     _deemixProxy = deemixProxy;
 }