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; }
public CollectionImageController(IOrderedService <CollectionImage> _service) : base(_service) { }
public CollectionProductController(IOrderedService <CollectionProduct> _service) : base(_service) { }
public CategoryProductController(IOrderedService <CategoryProduct> _service) : base(_service) { }
public CheckoutController(IOrderedService orderedService, ICustomerService customerService, IOrderDetailService orderDetailService) { _orderedService = orderedService; _customerService = customerService; _orderDetailService = orderDetailService; }
public OrderedAppService(IOrderedService orderedService) { this._orderedService = orderedService; }
public OrderedController(IOrderedService <T> _service) : base(_service) { }