Exemplo n.º 1
0
 public HomeController(
     IOptions <AppConfiguration> appSettings, ISiteMapService siteMapService, IRSSFeedService rssFeedService)
 {
     _appSettings    = appSettings?.Value;
     _siteMapService = siteMapService;
     _rssFeedService = rssFeedService;
 }
Exemplo n.º 2
0
 public RSSFeedController(IRSSFeedService RSSFeedService)
 {
     _RSSFeedService = RSSFeedService;
 }