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