Пример #1
0
 public CustomerACL(ICustomerAggregateRepository customerAggregateRepository)
 {
     _customerAggregateRepository = customerAggregateRepository;
 }
Пример #2
0
 public CustomerCommandHandlers(IUnitOfWork uow, ICustomerAggregateRepository customerRepository, IEventBus bus) : base(uow)
 {
     this.customerRepository = customerRepository;
     this.bus = bus;
 }