Exemple #1
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;
 }
Exemple #2
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;
 }