예제 #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);
 }