예제 #1
0
 public SepaStatementEntry() : base("Ntry")
 {
     this.m_aAmt          = new SepaAmount();
     this.m_aAmt.Currency = "EUR";
     this.m_sBkTxCdIssr   = "ZKA";
     this.m_vTxDtls       = new SepaTransactionDetailsCollection(this);
 }
예제 #2
0
 public SepaOriginalTransactionInformation() : base("TxInfAndSts")
 {
     this.m_vStsRsnInfs   = new SepaStatusReasonInformations(this);
     this.m_aAmt          = new SepaAmount();
     this.m_aAmt.Currency = "EUR";
     this.m_aDbtr         = new SepaPartyIdentification("Dbtr", SepaPartyIdentification.Fields.Name, SepaPartyIdentification.Fields.None);
     this.m_aCdtr         = new SepaPartyIdentification("Cdtr", SepaPartyIdentification.Fields.Name, SepaPartyIdentification.Fields.None);
 }
 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();
 }
예제 #4
0
 public SepaBalance() : base("Bal")
 {
     this.m_aAmt = new SepaAmount();
 }
 public SepaTransactionInformation(string sTagName) : base(sTagName)
 {
     this.m_aAmt          = new SepaAmount();
     this.m_aAmt.Currency = "EUR";
 }