コード例 #1
0
ファイル: ShippingBll.cs プロジェクト: jimidzj/Inspect
        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);
        }
コード例 #2
0
ファイル: ShippingDtlBll.cs プロジェクト: jimidzj/Inspect
 public ShippingDtlBll(ContextInfo contextInfo)
     : base(contextInfo)
 {
     localDal = new ShippingDtlDal(dbInstance);
     baseDal = localDal;
 }