public ShopController(IHttpContextAccessor httpContextAccessor, IProductBLL productBLL, IImageServices imageServices, IMainGroupBLL mainGroupBLL, ISubGroupBLL subGroupBLL, IProductDetailsBLL productDetailsBLL) : base(imageServices) { ProductBLL = productBLL; MainGroupBLL = mainGroupBLL; SubGroupBLL = subGroupBLL; ProductDetailsBLL = productDetailsBLL; HttpContextAccessor = httpContextAccessor; }
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 MainGroupController(IMainGroupBLL maingroupdBLL, IImageServices imageServices) : base(imageServices) { MainGroupBLL = maingroupdBLL; }
public SubGroupController(ISubGroupBLL subGroupBLL, IImageServices imageServices, IMainGroupBLL MainGroupBLL) : base(imageServices) { SubGroupBLL = subGroupBLL; }