Example #1
0
 public CustomerAPIs(ICustomerAPIRepository customerAPIRepository)
 {
     this.customerAPIRepository = customerAPIRepository;
 }
 public CustomerAPIsController(ICustomerRepository customerRepository, ICustomerAPIRepository customerAPIRepository)
 {
     this.customerRepository    = customerRepository;
     this.customerAPIRepository = customerAPIRepository;
 }