Exemplo n.º 1
0
 public HomeController(ICategoryBLL categoryBLL, IProductBLL productBLL, IVideoBLL videoBLL, IOptions <AppSettings> appSetting)
 {
     _categoryBLL = categoryBLL;
     _productBLL  = productBLL;
     _videoBLL    = videoBLL;
     _appSetting  = appSetting;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 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;
 }
Exemplo n.º 4
0
 public GoodsController(IGoodsBLL goodsBLL, ICategoryBLL categoryBLL,
                        IGoodsCategoryBLL goodsCategoryBLL, IGoodsImagesBLL goodsImagesBLL,
                        IReCommendBLL recommendBLL)
 {
     _goodsBLL         = goodsBLL;
     _categoryBLL      = categoryBLL;
     _goodsCategoryBLL = goodsCategoryBLL;
     _goodsImagesBLL   = goodsImagesBLL;
     _recommendBLL     = recommendBLL;
 }
Exemplo n.º 5
0
 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;
 }
Exemplo n.º 6
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;
 }
Exemplo n.º 7
0
 public CategoryController()
 {
     _categoryBLL = new CategoryBLL();
 }
 public AdminCategoryController(ICategoryBLL bLL, ILogger <AdminCategoryController> logger)
 {
     categoryBLL  = bLL;
     this._logger = logger;
 }
Exemplo n.º 9
0
 public CategoryController(ICategoryBLL categoryBLL)
 {
     _categoryBLL = categoryBLL;
 }
 public CategoryController(CategoryBLL stub)
 {
     _categoryBLL = stub;
 }
 public CategoryController()
 {
     _categoryBLL = new CategoryBLL();
 }
Exemplo n.º 12
0
 public CategoryController(ICategoryBLL category)
 {
     categoryBLL = category;
 }
Exemplo n.º 13
0
 public AdminController(ICategoryBLL categoryBLL, IProductBLL productBLL, IVideoBLL videoBLL)
 {
     _categoryBLL = categoryBLL;
     _productBLL  = productBLL;
     _videoBLL    = videoBLL;
 }
Exemplo n.º 14
0
 public CategoryController(ICategoryBLL categoryBLL, IImageServices imageServices) : base(imageServices)
 {
     CategoryBLL = categoryBLL;
 }
Exemplo n.º 15
0
 public CategoryController(CategoryBLL stub)
 {
     _categoryBLL = stub;
 }
Exemplo n.º 16
0
 public CategoryController(ICategoryBLL categoryBll)
 {
     _categoryBll = categoryBll;
 }
 public AdminSubCategoryController(ICategoryBLL bLL, ISubCategoryBLL sub, ILogger <AdminSubCategoryController> logger)
 {
     categoryBLL    = bLL;
     subCategoryBLL = sub;
     this._logger   = logger;
 }