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