Beispiel #1
0
 public HomeController(ISlideService slideService, IProductService productService, IParentProductCategoryService parentProductCategoryService, IProductCategoryService productCategoryService)
 {
     _productCategoryService       = productCategoryService;
     _parentProductCategoryService = parentProductCategoryService;
     _productService = productService;
     _slideService   = slideService;
 }
Beispiel #2
0
 public ParentProductCategoryController(IParentProductCategoryService parentProductCategoryService, IErrorService errorService) : base(errorService)
 {
     this._parentProductCategoryService = parentProductCategoryService;
 }