/// <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); } }