public DiretoriaCommandHandler(IDiretoriaRepository diretoriaRepository,
                                IUnitOfWork uow,
                                IMediatorHandler bus,
                                INotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications)
 {
     _diretoriaRepository = diretoriaRepository;
     Bus = bus;
 }
Example #2
0
 public DiretoriaAppService(IMapper mapper,
                            IDiretoriaRepository diretoriaRepository,
                            IMediatorHandler bus)
 {
     _mapper = mapper;
     _diretoriaRepository = diretoriaRepository;
     Bus = bus;
 }