コード例 #1
0
 public SummaryViewComponent(INotificationHandler <DomainNotification> notifications)
 {
     _notifications = (DomainNotificationsHandler)notifications;
 }
コード例 #2
0
ファイル: BaseController.cs プロジェクト: hudsonsteel/Agenda
 public BaseController(INotificationHandler <DomainNotification> notifications)
 {
     _notifications = (DomainNotificationsHandler)notifications;
 }
コード例 #3
0
ファイル: CommandHandler.cs プロジェクト: hudsonsteel/Agenda
 public CommandHandler(IUnityOfWork uow, IMediatorHandler bus, INotificationHandler <DomainNotification> notificacao)
 {
     _uow         = uow;
     _notificacao = (DomainNotificationsHandler)notificacao;
     _bus         = bus;
 }