public HomeController(ICategoryBLL categoryBLL, IProductBLL productBLL, IVideoBLL videoBLL, IOptions <AppSettings> appSetting) { _categoryBLL = categoryBLL; _productBLL = productBLL; _videoBLL = videoBLL; _appSetting = appSetting; }
public ProductController(IProductBLL productBLL, IProductDetailsBLL productDetailsBLL, ISubGroupBLL subGrouptBLL, IMainGroupBLL mainGroupBL, IBrandBLL brandBLL, ICategoryBLL categoryBLL, IImageServices imageServices) : base(imageServices) { ProductBLL = productBLL; this.MainGroupBLL = mainGroupBL; this.BrandBLL = brandBLL; this.CategorytBLL = categoryBLL; this.SubGroupBLL = subGrouptBLL; this.ProductDetailsBLL = productDetailsBLL; }
public ResidencesController(IResidenceBLL iResidenceBLL, IUserBLL iUserBLL, ICategoryBLL iCategoryBLL, IHostingEnvironment iHostingEnvironment, IAuthorizationService iAuthorizationService, IRatingBLL iRatingBLL) { _iResidenceBLL = iResidenceBLL; _iUserBLL = iUserBLL; _iCategoryBLL = iCategoryBLL; _iHostingEnvironment = iHostingEnvironment; _iAuthorizationService = iAuthorizationService; _iRatingBLL = iRatingBLL; }
public GoodsController(IGoodsBLL goodsBLL, ICategoryBLL categoryBLL, IGoodsCategoryBLL goodsCategoryBLL, IGoodsImagesBLL goodsImagesBLL, IReCommendBLL recommendBLL) { _goodsBLL = goodsBLL; _categoryBLL = categoryBLL; _goodsCategoryBLL = goodsCategoryBLL; _goodsImagesBLL = goodsImagesBLL; _recommendBLL = recommendBLL; }
public HomeController(ICategoryBLL categoryBLL, IGoodsBLL goodsBLL, IGoodsImagesBLL goodsImagesBLL, IGoodsCategoryBLL goodsCategoryBLL, IRulesBLL rulesBLL, IMemberBLL memberBLL) { _categoryBLL = categoryBLL; _goodsBLL = goodsBLL; _goodsImagesBLL = goodsImagesBLL; _goodsCategoryBLL = goodsCategoryBLL; _rulesBLL = rulesBLL; _memberBLL = memberBLL; }
public HomeController(IViewRenderService viewRenderService, IBrandBLL brandBLL, IHomeSliderBLL homeSliderBLL, IImageServices imageServices , ISubGroupBLL subGroupBLL, ICategoryBLL categoryBLL, IProductDetailsBLL productDetailsBLL, IProductBLL productBLL ) : base(imageServices) { this.productBLL = productBLL; this.productDetailsBLL = productDetailsBLL; this.subGroupBLL = subGroupBLL; HomeSliderBLL = homeSliderBLL; this.categoryBLL = categoryBLL; this.viewRenderService = viewRenderService; this.brandBLL = brandBLL; }
public CategoryController() { _categoryBLL = new CategoryBLL(); }
public AdminCategoryController(ICategoryBLL bLL, ILogger <AdminCategoryController> logger) { categoryBLL = bLL; this._logger = logger; }
public CategoryController(ICategoryBLL categoryBLL) { _categoryBLL = categoryBLL; }
public CategoryController(CategoryBLL stub) { _categoryBLL = stub; }
public CategoryController(ICategoryBLL category) { categoryBLL = category; }
public AdminController(ICategoryBLL categoryBLL, IProductBLL productBLL, IVideoBLL videoBLL) { _categoryBLL = categoryBLL; _productBLL = productBLL; _videoBLL = videoBLL; }
public CategoryController(ICategoryBLL categoryBLL, IImageServices imageServices) : base(imageServices) { CategoryBLL = categoryBLL; }
public CategoryController(ICategoryBLL categoryBll) { _categoryBll = categoryBll; }
public AdminSubCategoryController(ICategoryBLL bLL, ISubCategoryBLL sub, ILogger <AdminSubCategoryController> logger) { categoryBLL = bLL; subCategoryBLL = sub; this._logger = logger; }