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