Beispiel #1
0
 public CustomersController(ICustomersServices customers)
 {
     this.customers = customers;
 }
 public CustomersServiceController(ICustomersServices service)
 {
     this.service = service;
 }
 public SearchService(IOrderService orderService, IProductService productService, ICustomersServices customersServices)
 {
     this.orderService      = orderService;
     this.productService    = productService;
     this.customersServices = customersServices;
 }
Beispiel #4
0
 public CustomersController(
     ICustomersServices customersServices)
 {
     _services = customersServices ?? throw new ArgumentNullException(nameof(customersServices));
 }
 public CustomersController(ICustomersServices dataServices)
 {
     _dataServices = dataServices;
 }
Beispiel #6
0
 public CustomersController(ICustomersServices customersServices)
 {
     _customersServices = customersServices;
 }
 public CustomersController(ICustomersServices customersServices)
 {
     this.customers = customersServices;
 }