コード例 #1
0
ファイル: FeedUpdater.cs プロジェクト: nguseff31/ZipCasts
 public FeedUpdater(
     ZipCastsContext context,
     TempDirectoryService tempDirectoryService,
     MediaFileProcessor fileProcessor,
     ResolveFeedReader feedReaderResolver)
 {
     _context = context;
     _tempDirectoryService = tempDirectoryService;
     _fileProcessor        = fileProcessor;
     _feedReaderResolver   = feedReaderResolver;
 }
コード例 #2
0
 public MediaFileProcessor(
     AudioCompressionService compressionService,
     FileUploadService uploadService,
     TempDirectoryService tempDirectoryService,
     ZipCastsContext context,
     ResolveFileDownloadService fileDownloadResolver)
 {
     _compressionService   = compressionService;
     _uploadService        = uploadService;
     _tempDirectoryService = tempDirectoryService;
     _context = context;
     _fileDownloadResolver = fileDownloadResolver;
 }
コード例 #3
0
 public DownloadYoutubeVideoConsumerTests()
 {
     _directoryService = new TempDirectoryService("");
     _service          = new YoutubeFileService();
 }
コード例 #4
0
 public ExtractCompressedAudioTests()
 {
     _directoryService = new TempDirectoryService("");
     _service          = new AudioCompressionService();
 }