Exemple #1
0
 public PagamentoTipoService(IBus bus, IPagamentoTipoRepository pagamentoTipoRepository)
 {
     _pagamentoTipoRepository = pagamentoTipoRepository;
     _bus = bus;
 }
Exemple #2
0
 public PagamentoTipoCommandHandler(IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainNotification> notifications, IPagamentoTipoRepository pagamentoTipoRepository) : base(uow, bus, notifications)
 {
     _pagamentoTipoRepository = pagamentoTipoRepository;
 }