예제 #1
0
 public UsersBankAccountCollection FetchAll()
 {
     UsersBankAccountCollection coll = new UsersBankAccountCollection();
     Query qry = new Query(UsersBankAccount.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
예제 #2
0
 public UsersBankAccountCollection FetchByQuery(Query qry)
 {
     UsersBankAccountCollection coll = new UsersBankAccountCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }