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

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