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