コード例 #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 BillController(IProductDetailsBLL productDetailsBLL, ISaleOrderBLL saleOrderBLL, ICustomerBLL customerBLL, ITransportPriceBLL transportPriceBLL, ITransportTypeBLL transportTypeBLL, IPaypalServicesGatewayBLL paypalServicesGatewayBLL)
 {
     this.TransportPriceBLL         = transportPriceBLL;
     this.TransportTypeBLL          = transportTypeBLL;
     this.SaleOrderBLL              = saleOrderBLL;
     this.CustomerBLL               = customerBLL;
     this.ProductDetailsBLL         = productDetailsBLL;
     this._paypalServicesGatewayBLL = paypalServicesGatewayBLL;
 }
コード例 #4
0
 public SaleOrderController(IProductBLL ProductBLL, IProductDetailsBLL ProductDetailsBLL, ISaleOrderBLL SaleOrderBLL, ISaleOrderDetailsBLL SaleOrderDetailsBLL, ICustomerBLL CustomerBLL)
 {
     this.ISaleOrderDetailsBLL = SaleOrderDetailsBLL;
     this.ISaleOrderBLL        = SaleOrderBLL;
     this.ISaleOrderDetailsBLL = SaleOrderDetailsBLL;
     this.IProductDetailsBLL   = ProductDetailsBLL;
     this.IProductBLL          = ProductBLL;
     this.ICustomerBLL         = CustomerBLL;
 }
コード例 #5
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;
 }
コード例 #6
0
 public ProductDetailsController(IProductBLL productBLL, IProductDetailsBLL productDetailsBLL, IImageServices imageServices) : base(imageServices)
 {
     ProductDetailsBLL = productDetailsBLL;
     this.ProductBLL   = productBLL;
 }