コード例 #1
0
 public FeedUpdaterBackgroundService(
     FeedUpdater feedUpdater,
     ZipCastsContext context,
     ILogger logger)
 {
     _feedUpdater = feedUpdater;
     _context     = context;
     _logger      = logger;
 }
コード例 #2
0
ファイル: FeedUpdater.cs プロジェクト: nguseff31/ZipCasts
 public FeedUpdater(
     ZipCastsContext context,
     TempDirectoryService tempDirectoryService,
     MediaFileProcessor fileProcessor,
     ResolveFeedReader feedReaderResolver)
 {
     _context = context;
     _tempDirectoryService = tempDirectoryService;
     _fileProcessor        = fileProcessor;
     _feedReaderResolver   = feedReaderResolver;
 }
コード例 #3
0
 public MediaFileProcessor(
     AudioCompressionService compressionService,
     FileUploadService uploadService,
     TempDirectoryService tempDirectoryService,
     ZipCastsContext context,
     ResolveFileDownloadService fileDownloadResolver)
 {
     _compressionService   = compressionService;
     _uploadService        = uploadService;
     _tempDirectoryService = tempDirectoryService;
     _context = context;
     _fileDownloadResolver = fileDownloadResolver;
 }
コード例 #4
0
 public FilesController(ZipCastsContext context, FileUploadService uploadService)
 {
     _context       = context;
     _uploadService = uploadService;
 }
コード例 #5
0
 public RssController(YoutubeFeedReader feedReader, ITunesFeedReader itFeedreader, ZipCastsContext dbContext)
 {
     _ytFeedReader = feedReader;
     _itFeedreader = itFeedreader;
     _dbContext    = dbContext;
 }