public UpdateCustomerCommandHandler(
     ICustomerDomainEntity customerDomainEntity,
     IMapper mapper
     )
 {
     _customerDomainEntity = customerDomainEntity;
     _mapper = mapper;
 }
Exemple #2
0
 public DeleteCustomerCommandHandler(
     ICustomerDomainEntity customerDomainEntity
     )
 {
     _customerDomainEntity = customerDomainEntity;
 }