public SummaryViewComponent(INotificationHandler <DomainNotification> notifications)
 {
     _notifications = (DomainNotificationsHandler)notifications;
 }
Exemple #2
0
 public BaseController(INotificationHandler <DomainNotification> notifications)
 {
     _notifications = (DomainNotificationsHandler)notifications;
 }
Exemple #3
0
 public CommandHandler(IUnityOfWork uow, IMediatorHandler bus, INotificationHandler <DomainNotification> notificacao)
 {
     _uow         = uow;
     _notificacao = (DomainNotificationsHandler)notificacao;
     _bus         = bus;
 }