Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 3
0
 public BrandController(IBrandBLL brandBLL, IImageServices imageServices) : base(imageServices)
 {
     BrandBLL = brandBLL;
 }