示例#1
0
 /// <summary>
 /// Build statement information
 /// </summary>
 /// <param name="stmtrs"></param>
 private void BuildStatementInformation(XmlElement stmtrs)
 {
     if (stmtrs != null)
     {
         this.Currency    = Convert.ToString(stmtrs[Config.S_OFX_STATEMENT_CURRENCY].InnerText).Trim();
         this.Account     = new BankAccount(stmtrs);
         this.Ledger      = new LedgerBalance(stmtrs);
         this.Transaction = new StatementTransaction(stmtrs);
     }
 }
示例#2
0
 /// <summary>
 /// Build statement information
 /// </summary>
 /// <param name="stmtrs"></param>
 private void BuildStatementInformation(XmlElement stmtrs)
 {
     if (stmtrs != null)
     {
         this.Currency = Convert.ToString(stmtrs[Config.S_OFX_STATEMENT_CURRENCY].InnerText).Trim();
         this.Account = new BankAccount(stmtrs);
         this.Ledger = new LedgerBalance(stmtrs);
         this.Transaction = new StatementTransaction(stmtrs);
     }
 }