Ejemplo n.º 1
0
 public CustomerServiceProcessor(
     IKatavuccolClient katavuccolClient,
     ICustomerServiceMapper customerServiceMapper)
 {
     this.katavuccolClient      = katavuccolClient;
     this.customerServiceMapper = customerServiceMapper;
 }
Ejemplo n.º 2
0
 public CustomerService(
     ICustomerServiceMapper customerServiceMapper,
     ICustomerServicePostProcessor customerServicePostProcessor,
     ICustomerServiceProcessor customerServiceProcessor,
     ICustomerServiceValidator customerServiceValidator,
     ICustomerServiceVerifier customerServiceVerifier)
 {
     this.customerServiceMapper        = customerServiceMapper;
     this.customerServicePostProcessor = customerServicePostProcessor;
     this.customerServiceProcessor     = customerServiceProcessor;
     this.customerServiceValidator     = customerServiceValidator;
     this.customerServiceVerifier      = customerServiceVerifier;
 }