public AdminBankAccountCollection FetchAll() { AdminBankAccountCollection coll = new AdminBankAccountCollection(); Query qry = new Query(AdminBankAccount.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public AdminBankAccountCollection FetchByQuery(Query qry) { AdminBankAccountCollection coll = new AdminBankAccountCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }