コード例 #1
0
 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;
 }
コード例 #2
0
 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;
 }
コード例 #3
0
 public MainGroupController(IMainGroupBLL maingroupdBLL, IImageServices imageServices) : base(imageServices)
 {
     MainGroupBLL = maingroupdBLL;
 }
コード例 #4
0
 public SubGroupController(ISubGroupBLL subGroupBLL, IImageServices imageServices, IMainGroupBLL MainGroupBLL) : base(imageServices)
 {
     SubGroupBLL = subGroupBLL;
 }