Example #1
0
        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);
        }
Example #2
0
 public ShippingDtlCtnBll(ContextInfo contextInfo)
     : base(contextInfo)
 {
     localDal = new ShippingDtlCtnDal(dbInstance);
     baseDal = localDal;
 }