示例#1
0
 public ChamadoService(IBus bus, IChamadosRepository repository, IUnitOfWork uow, IMapper mapper)
 {
     _bus        = bus;
     _repository = repository;
     _uow        = uow;
     _mapper     = mapper;
 }
示例#2
0
 protected ChamadoCommandHandler(IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainNotification> notifications, IChamadosRepository repository) : base(uow, bus, notifications)
 {
     _repository = repository;
 }