public PodcastService(IFeedParaseService feedParser, IPodcastStore<Podcast> storageService, IFileDownloadService fileDownloadManager)
 {
     this.feedParser = feedParser;
     this.storageService = storageService;
     this.fileDownloadManager = fileDownloadManager;
 }
 public PodcastController(IFileHelper fileHelper, IPodcastStore podcastStore)
 {
     _fileHelper   = fileHelper;
     _podcastStore = podcastStore;
 }
 public PodcastService(IFeedParaseService feedParser, IPodcastStore <Podcast> storageService, IFileDownloadService fileDownloadManager)
 {
     this.feedParser          = feedParser;
     this.storageService      = storageService;
     this.fileDownloadManager = fileDownloadManager;
 }
示例#4
0
 public TrackController(ILibraryStore libraryStore, IPodcastStore podcastStore)
 {
     _libraryStore = libraryStore;
     _podcastStore = podcastStore;
 }