Beispiel #1
0
 public EmpregadoController(
     IEmpregadoAppService empregadoAppService,
     INotificationHandler <DomainNotification> notifications,
     IMediatorHandler mediator) : base(notifications, mediator)
 {
     _empregadoAppService = empregadoAppService;
 }
Beispiel #2
0
 public EmpregadoController(IEmpregadoAppService empregadoAppService,
                            INotificationHandler <DomainNotification> notifications) : base(notifications)
 {
     _empregadoAppService = empregadoAppService;
 }