//public CustomerController():this(new DefaultCustomerService()) { } public CustomerController(ICustomerAPIService service) { _service = service; }
public CustomerController(ICustomerAPIService customerApiService) { _customerApiService = customerApiService; }