public PodcastService(IFeedParaseService feedParser, ILocalStorageService <Podcast> storageService, IFileDownloadService fileDownloadManager)
 {
     this.feedParser          = feedParser;
     this.storageService      = storageService;
     this.fileDownloadManager = fileDownloadManager;
 }
 public PodcastService(IFeedParaseService feedParser, IPodcastStore<Podcast> storageService, IFileDownloadService fileDownloadManager)
 {
     this.feedParser = feedParser;
     this.storageService = storageService;
     this.fileDownloadManager = fileDownloadManager;
 }