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