Ejemplo n.º 1
0
 public CustomerController(ICustomerInfoService customerInfoService)
 {
     _customerInfoService = customerInfoService;
 }
Ejemplo n.º 2
0
 public CustomerInfoController(ICustomerInfoService @object)
 {
     _service = @object;
 }
Ejemplo n.º 3
0
 public CustomerInfoController()
 {
     _customerInfoService = new CustomerInfoService(_user);
 }