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