public NewsController( INewsService newsService, StatisticNewsService statisticNewsService) { this.newsService = newsService; this.statisticNewsService = statisticNewsService; }
public NewsService( NewsDbContext context, StatisticNewsService statisticNewsService) { this.context = context; this.statisticNewsService = statisticNewsService; }
public CommentService( NewsDbContext context, StatisticCommentService statisticCommentService, StatisticNewsService statisticNewsService, INotificationService notificationService) { this.context = context; this.statisticCommentService = statisticCommentService; this.statisticNewsService = statisticNewsService; this.notificationService = notificationService; }