public GlobalEventsApiController(IGlobalEventService globalEventService, INotificationService notificationService)
 {
     _globalEventService  = globalEventService;
     _notificationService = notificationService;
 }
Пример #2
0
 public HomeController(IGlobalEventService eventService)
 {
     _eventService = eventService;
 }