예제 #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 SepaPaymentInformation() : base("PmtInf")
 {
     this.m_sPmtInfId = SepaUtil.GenerateIdentification("P");
     this.m_vTxInfs   = new SepaTransactionInformations(this);
 }
예제 #3
0
 protected SepaMessage(string sMessageTagName, SepaMessageType nMessageType) : base(sMessageTagName)
 {
     this.m_nMessageType = nMessageType;
     this.m_sMsgId       = SepaUtil.GenerateIdentification("M");
     this.m_dtCreDtTm    = DateTime.Now;
 }