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;
 }
 public AdminBankAccountCollection FetchByID(object AdminBankAccountKey)
 {
     AdminBankAccountCollection coll = new AdminBankAccountCollection().Where("admin_bank_account_key", AdminBankAccountKey).Load();
     return coll;
 }