Example #1
0
 public HomeController(IPodcastParser podcastParser, IPodcastService podcastService, IConfigurationRoot configuration)
 {
     _podcastParser  = podcastParser;
     _podcastService = podcastService;
     _configuration  = configuration;
 }
Example #2
0
 public PodcastService(IHttpClientService httpClientService, IPodcastParser podcastParser)
 {
     _httpClientService = httpClientService;
     _podcastParser     = podcastParser;
 }