示例#1
0
 public HomeController(IProductService productService, IProductAdvertisementService productAdvertisementService, IBrandService brandService, IProductCategoryService productCategoryService, IFooterClientService footerClientService, IMenuService menuService, IContentCategoryService contentCategoryService, IMenuTypeService menuTypeService, IProductSpecSpecValueService productSpecSpecValueService, IOrderDetailTempService orderDetailTempService)
 {
     _productService = productService;
     _productAdvertisementService = productAdvertisementService;
     _productCategoryService      = productCategoryService;
     _brandService                = brandService;
     _footerClientService         = footerClientService;
     _menuService                 = menuService;
     _contentCategoryService      = contentCategoryService;
     _menuTypeService             = menuTypeService;
     _productSpecSpecValueService = productSpecSpecValueService;
     _orderDetailTempService      = orderDetailTempService;
 }
示例#2
0
 public EmployeeController(IOrderDetailTempService orderDetailTempService, IProductService productService)
 {
     _productService         = productService;
     _orderDetailTempService = orderDetailTempService;
 }