public HomeController(ISubCategoryServices subcategoryServices, IBrandServices brandServices, IProductServices productServices, IColorsServices colorsServices)
 {
     _subcategoryServices = subcategoryServices;
     _brandServices       = brandServices;
     _productServices     = productServices;
     _colorsServices      = colorsServices;
 }
Esempio n. 2
0
 public AdminSubCategoryController(ISubCategoryServices subcategoryServices, ICategoryServices categoryServices)
 {
     _subcategoryServices = subcategoryServices;
     _categoryServices    = categoryServices;
 }
Esempio n. 3
0
 public SubCategoryController(ISubCategoryServices _ServicesSubCategory)
 {
     ServicesSubCategory = _ServicesSubCategory;
 }
Esempio n. 4
0
 public SubCategoriesController(ISubCategoryServices SubCategories)
 {
     _SubCategories = SubCategories;
 }