示例#1
0
 public ReceiptPayment( decimal mAmount, string strReferenceNo, IPP iPP, Payment payment, Receipt receipt )
 {
     this._mAmount = mAmount;
     this._strReferenceNo = strReferenceNo;
     this._iPP = iPP;
     this._payment = payment;
     this._receipt = receipt;
 }
示例#2
0
 public ReceiptPayment(decimal mAmount, string strReferenceNo, IPP iPP, Payment payment, Receipt receipt)
 {
     this._mAmount        = mAmount;
     this._strReferenceNo = strReferenceNo;
     this._iPP            = iPP;
     this._payment        = payment;
     this._receipt        = receipt;
 }
示例#3
0
文件: Member.cs 项目: kimykunjun/test
 public void AddIPP(IPP ipp)
 {
     ipp.Member = this;
     _iPPs.Add(ipp);
 }
示例#4
0
文件: Bank.cs 项目: kimykunjun/test
 public void AddIPP(IPP iPP)
 {
     iPP.Bank = this;
     _iPPs.Add(iPP);
 }
示例#5
0
 public void AddIPP(IPP iPP)
 {
     iPP.Bank = this;
     _iPPs.Add(iPP);
 }
示例#6
0
文件: Member.cs 项目: kimykunjun/test
 public void AddIPP(IPP ipp)
 {
     ipp.Member = this;
     _iPPs.Add(ipp);
 }