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