Exemplo n.º 1
0
 public AdminBankAccountCollection FetchAll()
 {
     AdminBankAccountCollection coll = new AdminBankAccountCollection();
     Query qry = new Query(AdminBankAccount.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 2
0
 public AdminBankAccountCollection FetchByQuery(Query qry)
 {
     AdminBankAccountCollection coll = new AdminBankAccountCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 3
0
 public AdminBankAccountCollection FetchByID(object AdminBankAccountKey)
 {
     AdminBankAccountCollection coll = new AdminBankAccountCollection().Where("admin_bank_account_key", AdminBankAccountKey).Load();
     return coll;
 }