public ShippingBll(ContextInfo contextInfo) : base(contextInfo) { localDal = new ShippingDal(dbInstance); baseDal = localDal; shippingDtlDal = new ShippingDtlDal(dbInstance); shippingDtlCtnDal = new ShippingDtlCtnDal(dbInstance); custOrderHistoryDal = new CustOrderHistoryDal(dbInstance); packingRecDtlDal = new PackingRecDtlDal(dbInstance); receivingCtnDtlDal = new ReceivingCtnDtlDal(dbInstance); shippingPlanDal = new ShippingPlanDal(dbInstance); }
public ShippingPlanBll(ContextInfo contextInfo) : base(contextInfo) { baseDal = new ShippingPlanDal(dbInstance); }