示例#1
0
文件: Summary.cs 项目: kenwilcox/x937
 private void BundleEnd()
 {
     if (CreditDetail.CreditAmount <= 0)
     {
         return;
     }
     CreditSummary.Add(CreditDetail);
     CreditDetail = new ICLCreditDetail();
 }
示例#2
0
文件: Summary.cs 项目: kenwilcox/x937
 public Summary()
 {
     FileDetail       = new ICLFileDetail();
     CashLetterDetail = new ICLCashLetterDetail();
     CreditDetail     = new ICLCreditDetail();
     //FileSummary = new ICLFileSummary();
     CashLetterSummary = new ICLCashLetterSummary();
     CreditSummary     = new ICLCreditSummary();
 }