public CommonController(ITransportPriceBLL transportPriceBLL, ITransportTypeBLL transportTypeBLL, IMailchimpServices MailchimpServices, IProvinceBLL provinceBLL, ISubscribeEmailBLL subscribeEmailBLL) { this.TransportPriceBLL = transportPriceBLL; this.TransportTypeBLL = transportTypeBLL; this.IProvinceBLL = provinceBLL; this.subscribeEmailBLL = subscribeEmailBLL; this.MailchimpServices = MailchimpServices; }
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; }
public TransportTypeController(IDistrictBLL DistrictBLL, ITransportPriceBLL TransportPriceBLL, IImageServices imageServices, ITransportTypeBLL TransportTypeBLL) : base(imageServices) { this.TransportPriceBLL = TransportPriceBLL; this.TransportTypeBLL = TransportTypeBLL; this.DistrictBLL = DistrictBLL; }