public NotificationsController(INotificationAppService notificationAppService, IFeedAppService feedAppService, ICourseAppService courseAppService, IScholarshipAppService scoralshipAppService, IDialyMessageAppService dialyMessageAppService)
 {
     _notificationAppService = notificationAppService;
     _feedAppService         = feedAppService;
     _courseAppService       = courseAppService;
     _scoralshipAppService   = scoralshipAppService;
     _dialyMessageAppService = dialyMessageAppService;
 }
Exemplo n.º 2
0
 public HomeController(IFeedAppService feedAppService, IStatsAppService statsAppService)
 {
     _feedAppService  = feedAppService;
     _statsAppService = statsAppService;
 }
Exemplo n.º 3
0
 public FeedsController(IFeedAppService feedAppService, IPublisherAppService publisherAppService, IAcademicUnitAppService academicUnitAppService)
 {
     _feedAppService         = feedAppService;
     _publisherAppService    = publisherAppService;
     _academicUnitAppService = academicUnitAppService;
 }