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