Beispiel #1
0
 public NewsController( INewsService newsService, INewsTopicService newsTopicService )
 {
     this.newsService = newsService;
     this.newsTopicService = newsTopicService;
 }
Beispiel #2
0
 public NewsController( INewsService newsService, INewsTopicService newsTopicService, IHomeContentService homecontentService )
 {
     this.newsService = newsService;
     this.newsTopicService = newsTopicService;
     this.homecontentService = homecontentService;
 }