public ProductController(IProductBLL stub)
 {
     _product = stub;
 }
Пример #2
0
 public ProductDetailsController(IProductBLL productBLL, IProductDetailsBLL productDetailsBLL, IImageServices imageServices) : base(imageServices)
 {
     ProductDetailsBLL = productDetailsBLL;
     this.ProductBLL   = productBLL;
 }
 public ProductController()
 {
     _product = new ProductBLL();
 }
 public DesignerExamineController(ICustomerInfoBLL customerInfoBLL, ICustomerTrackingBLL customerTrackingBLL, IDesign_CustomerExceptedBuyBLL design_CustomerExceptedBuyBLL, IDesignSubmitBLL designSubmitBLL, IExceptedBuyBLL exceptedBuyBLL, IProductCodeBLL productCodeBLL, IStoreBLL storeBLL, IPositionBLL positionBLL, IStoreEmployeesBLL storeEmployeesBLL, IProductBLL productBLL, IProduct_SeriesBLL product_SeriesBLL, IProduct_BrandBLL product_BrandBLL, IProduct_ClassfiyBLL product_ClassfiyBLL, ISalesOrderBLL salesOrderBLL, ISalesOrder_detailsBLL salesOrder_DetailsBLL, IProduct_SPUBLL product_SPUBLL, IProduct_SKUBLL product_SKUBLL, IDesignResultBLL designResultBLL, IDesignResult_DealListingBLL designResult_DealListingBLL, IDesign_ProjectDrawingsBLL design_ProjectDrawingsBLL)
 {
     this.customerInfoBLL               = customerInfoBLL;
     this.customerTrackingBLL           = customerTrackingBLL;
     this.design_CustomerExceptedBuyBLL = design_CustomerExceptedBuyBLL;
     this.designSubmitBLL               = designSubmitBLL;
     this.exceptedBuyBLL              = exceptedBuyBLL;
     this.productCodeBLL              = productCodeBLL;
     this.storeBLL                    = storeBLL;
     this.positionBLL                 = positionBLL;
     this.storeEmployeesBLL           = storeEmployeesBLL;
     this.productBLL                  = productBLL;
     this.product_SeriesBLL           = product_SeriesBLL;
     this.product_BrandBLL            = product_BrandBLL;
     this.product_ClassfiyBLL         = product_ClassfiyBLL;
     this.salesOrderBLL               = salesOrderBLL;
     this.salesOrder_DetailsBLL       = salesOrder_DetailsBLL;
     this.product_SPUBLL              = product_SPUBLL;
     this.product_SKUBLL              = product_SKUBLL;
     this.designResultBLL             = designResultBLL;
     this.designResult_DealListingBLL = designResult_DealListingBLL;
     this.design_ProjectDrawingsBLL   = design_ProjectDrawingsBLL;
 }