Exemple #1
0
 public ProductController(IProductService productService, IProductAdvertisementService productAdvertisementService, IBrandService brandService, IProductCategoryService productCategoryService, IFooterClientService footerClientService, IMenuService menuService, IContentCategoryService contentCategoryService, IMenuTypeService menuTypeService)
 {
     _productService = productService;
     _productAdvertisementService = productAdvertisementService;
     _productCategoryService      = productCategoryService;
     _brandService           = brandService;
     _footerClientService    = footerClientService;
     _menuService            = menuService;
     _contentCategoryService = contentCategoryService;
     _menuTypeService        = menuTypeService;
 }
Exemple #2
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;
 }
Exemple #3
0
 public FooterClientController(IFooterClientService footerClientService)
 {
     _footerClientService = footerClientService;
 }