Esempio n. 1
0
        //public CustomerController():this(new DefaultCustomerService()) { }

        public CustomerController(ICustomerAPIService service)
        {
            _service = service;
        }
Esempio n. 2
0
 public CustomerController(ICustomerAPIService customerApiService)
 {
     _customerApiService = customerApiService;
 }