public HomeController(ICategoryService categoryService, IProductService productService, ICustomerService customerService, IRoleService roleService, ISupplierService supplierService, IOrderedService orderedService, IComplaintService complaintService)
 {
     _roleService      = roleService;
     _categoryService  = categoryService;
     _productService   = productService;
     _customerService  = customerService;
     _supplierService  = supplierService;
     _orderedService   = orderedService;
     _complaintService = complaintService;
 }
示例#2
0
 public CollectionImageController(IOrderedService <CollectionImage> _service) : base(_service)
 {
 }
 public CollectionProductController(IOrderedService <CollectionProduct> _service) : base(_service)
 {
 }
示例#4
0
 public CategoryProductController(IOrderedService <CategoryProduct> _service) : base(_service)
 {
 }
示例#5
0
 public CheckoutController(IOrderedService orderedService, ICustomerService customerService, IOrderDetailService orderDetailService)
 {
     _orderedService     = orderedService;
     _customerService    = customerService;
     _orderDetailService = orderDetailService;
 }
 public OrderedAppService(IOrderedService orderedService)
 {
     this._orderedService = orderedService;
 }
示例#7
0
 public OrderedController(IOrderedService <T> _service) : base(_service)
 {
 }