Exemplo n.º 1
0
 public SystemBankAccountCollection FetchAll()
 {
     SystemBankAccountCollection coll = new SystemBankAccountCollection();
     Query qry = new Query(SystemBankAccount.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 2
0
 public SystemBankAccountCollection FetchByQuery(Query qry)
 {
     SystemBankAccountCollection coll = new SystemBankAccountCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 3
0
 public SystemBankAccountCollection FetchByID(object SystemBankAccountsKey)
 {
     SystemBankAccountCollection coll = new SystemBankAccountCollection().Where("system_bank_accounts_key", SystemBankAccountsKey).Load();
     return coll;
 }