Ejemplo n.º 1
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.º 2
0
 public HomeSliderController(IHomeSliderBLL homesliderBLL, IImageServices imageServices) : base(imageServices)
 {
     HomeSliderBLL = homesliderBLL;
 }