Esempio n. 1
0
 public DownloadFileActor(
     IAuditorResponseBase auditor,
     IFileDownloaderService fileDownloaderService)
 {
     _auditor = auditor;
     _fileDownloaderService = fileDownloaderService;
 }
Esempio n. 2
0
 public UpdateService()
 {
     _configurationManifestService          = StaticData.Get <IConfigurationManifestService>();
     _configurationManifestValidatorService = StaticData.Get <IConfigurationManifestValidatorService>();
     _fileDownloaderService = StaticData.Get <IFileDownloaderService>();
     _fileValidatorService  = StaticData.Get <IFileValidatorService>();
 }
Esempio n. 3
0
 public WxFileController(IFileDownloaderService fileDownloaderService         = null,
                         IAudioFileService audioFileService                   = null,
                         IHostingEnvironmentService hostingEnvironmentService = null)
 {
     _fileDownloaderService     = fileDownloaderService ?? new FileDownloaderService();
     _audioFileService          = audioFileService ?? new AudioFileService();
     _hostingEnvironmentService = hostingEnvironmentService ?? new HostingEnvironmentService();
 }
Esempio n. 4
0
 public WxFileController()
 {
     _fileDownloaderService     = new FileDownloaderService();
     _audioFileService          = new AudioFileService();
     _hostingEnvironmentService = new HostingEnvironmentService();
 }
Esempio n. 5
0
 public EventImageScrapper(IFileDownloaderService fileDownloaderService)
 {
     _fileDownloaderService = fileDownloaderService;
 }