コード例 #1
0
 public SepaStatement(string sTagName) : base(sTagName)
 {
     this.m_sId       = SepaUtil.GenerateIdentification("S");
     this.m_dtCreDtTm = DateTime.Now;
     this.m_aAcct     = new SepaAccount("Acct");
     this.m_vBals     = new SepaBalances(this);
     this.m_vNtrys    = new SepaStatementEntries(this);
 }
コード例 #2
0
 public SepaTransactionDetails() : base("TxDtls")
 {
     this.m_aTxAmt      = new SepaAmount();
     this.m_sBkTxCdIssr = "ZKA";
     this.m_aDbtr       = new SepaPartyIdentification("Dbtr", SepaPartyIdentification.Fields.Name, SepaPartyIdentification.Fields.None);
     this.m_aDbtrAcct   = new SepaAccount("DbtrAcct");
     this.m_aCdtr       = new SepaPartyIdentification("Cdtr", SepaPartyIdentification.Fields.CdtrId | SepaPartyIdentification.Fields.Name, SepaPartyIdentification.Fields.None);
     this.m_aCdtrAcct   = new SepaAccount("CdtrAcct");
     this.m_aDbtrAgt    = new SepaFinancialInstitutionIdentification();
     this.m_aCdtrAgt    = new SepaFinancialInstitutionIdentification();
 }