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();
 }
Beispiel #2
0
 public SepaAccount(string sTagName) : base(sTagName)
 {
     this.m_aOwnr = new SepaPartyIdentification("Ownr", SepaPartyIdentification.Fields.Name, SepaPartyIdentification.Fields.None);
     this.m_aSvcr = new SepaFinancialInstitutionIdentification();
 }