コード例 #1
0
 public ShopExchangedApplyBll(IShopExchangedApply shopExchangedApply, IShopExchangedApplyDetail shopExchangedApplyDetail,
                              ICheckRefund checkRefund)
 {
     _shopRefund      = shopExchangedApply;
     _shopApplyDetail = shopExchangedApplyDetail;
     _checkRefund     = checkRefund;
 }
コード例 #2
0
ファイル: CheckRefund.cs プロジェクト: mkbiltek2019/ERP_6.0
 public CheckRefund(ICheckRefund checkRefund)
 {
     _refundDal = checkRefund;
 }
コード例 #3
0
ファイル: CheckRefund.cs プロジェクト: mkbiltek2019/ERP_6.0
 public CheckRefund(GlobalConfig.DB.FromType fromType)
 {
     _refundDal = OrderInstance.GetCheckRefundDao(fromType);
 }
コード例 #4
0
 public ShopExchangedApplyBll(GlobalConfig.DB.FromType fromType)
 {
     _shopRefund      = new ShopExchangedApplyDal(fromType);
     _shopApplyDetail = new ShopExchangedApplyDetailDal(fromType);
     _checkRefund     = new CheckRefund(fromType);
 }