Beispiel #1
0
 public RenameService(ILogger <IRenameService> logger, IPdbApiService pdbApi, IVideoQualityProdiver videoQualityProdiver, IOptions <RenameServiceOptions> renameServiceOptions)
 {
     this.logger = logger;
     this.pdbApi = pdbApi;
     this.videoQualityProdiver = videoQualityProdiver;
     this.renameServiceOptions = renameServiceOptions.Value;
 }
 public ChangeNamingTemplateService(ILogger <ChangeNamingTemplateService> logger, IPdbApiService pdbApi, IRenameService renameService, IVideoQualityProdiver videoQualityProdiver, IOptions <RenameServiceOptions> renameServiceOptions)
 {
     this.logger               = logger;
     this.pdbApi               = pdbApi;
     this.renameService        = renameService;
     this.videoQualityProdiver = videoQualityProdiver;
     this.renameServiceOptions = renameServiceOptions.Value;
 }
Beispiel #3
0
 public UsenetDownloadService(ILogger <IUsenetDownloadService> logger, IOptions <UsenetDownloadServiceOptions> options,
                              IRenameService renameService, IPdbApiService pdbApiService, IVideoQualityProdiver videoQualityProdiver,
                              ISabnzbdService sabnzbdService, INzbgetService nzbgetService, IVideoMatching videoMatching)
 {
     this.logger               = logger;
     this.options              = options.Value;
     this.renameService        = renameService;
     this.pdbApiService        = pdbApiService;
     this.videoQualityProdiver = videoQualityProdiver;
     this.sabnzbdService       = sabnzbdService;
     this.nzbgetService        = nzbgetService;
     this.videoMatching        = videoMatching;
 }