Exemple #1
0
 public CustomerController(CenDekContext dbContext, ICustomerService customerService, ICustomerContactService customerContactService, ICustomerCarrierService customerCarrierService, IShippingAddressService shippingAddressService)
 {
     _dbContext              = dbContext;
     _customerService        = customerService;
     _customerContactService = customerContactService;
     _customerCarrierService = customerCarrierService;
     _shippingAddressService = shippingAddressService;
 }
Exemple #2
0
 public CarrierService(CenDekContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #3
0
 public CustomerService(CenDekContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #4
0
 public DashboardController(CenDekContext dbContext)
 {
     this._dbContext = dbContext;
 }
 public ShippingAddressService(CenDekContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #6
0
 public SettingsController(CenDekContext dbContext, ICarrierService carrierService)
 {
     _dbContext      = dbContext;
     _carrierService = carrierService;
 }