Beispiel #1
0
        //
        // GET: /Product/

        public AdminProductController()
        {
            this._unitOfWork               = new UnitOfWork(_df);
            this._productBusiness          = new ProductBusiness(_df, this._unitOfWork);
            this._productSizeBusiness      = new ProductSizeBusiness(_df, this._unitOfWork);
            this._productAttributeBusiness = new ProductAttributeBusiness(_df, this._unitOfWork);
            this._brandBusiness            = new BrandBusiness(_df, this._unitOfWork);
            this._categoryBusiness         = new CategoryBusiness(_df, this._unitOfWork);
            this._imageBusiness            = new ImageBusiness(_df, this._unitOfWork);
            this._sliderBusiness           = new SliderBusiness(_df, this._unitOfWork);
            this._subCategoryBusiness      = new SubCategoryBusiness(_df, this._unitOfWork);
        }
Beispiel #2
0
 public DetailController()
 {
     this._unitOfWork               = new UnitOfWork(_df);
     this._productBusiness          = new ProductBusiness(_df, this._unitOfWork);
     this._ImageBusiness            = new ImageBusiness(_df, this._unitOfWork);
     this._ReviewBusiness           = new ReviewBusiness(_df, this._unitOfWork);
     this._userBusiness             = new UserBusiness(_df, this._unitOfWork);
     this._CategoryBusiness         = new CategoryBusiness(_df, this._unitOfWork);
     this._SubCategoryBusiness      = new SubCategoryBusiness(_df, this._unitOfWork);
     this._productSizeBusiness      = new ProductSizeBusiness(_df, this._unitOfWork);
     this._productAttributeBusiness = new ProductAttributeBusiness(_df, this._unitOfWork);
 }
Beispiel #3
0
 public ProductController()
 {
     this._unitOfWork               = new UnitOfWork(_df);
     this._categoryBusiness         = new CategoryBusiness(_df, this._unitOfWork);
     this._subCategoryBusiness      = new SubCategoryBusiness(_df, this._unitOfWork);
     this._brandBusiness            = new BrandBusiness(_df, this._unitOfWork);
     this._productBusiness          = new ProductBusiness(_df, this._unitOfWork);
     this._productSizeBusiness      = new ProductSizeBusiness(_df, this._unitOfWork);
     this._productAttributeBusiness = new ProductAttributeBusiness(_df, this._unitOfWork);
     this._ImageBusiness            = new ImageBusiness(_df, this._unitOfWork);
     this._AddToCartBusiness        = new AddToCartBusiness(_df, this._unitOfWork);
     this._WishListBusiness         = new WishListBusiness(_df, this._unitOfWork);
     this._CompareListBusiness      = new CompareListBusiness(_df, this._unitOfWork);
 }