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); }
public PnAgenteInscriptorCollection FetchByID(object IdAgenteInscriptor) { PnAgenteInscriptorCollection coll = new PnAgenteInscriptorCollection().Where("id_agente_inscriptor", IdAgenteInscriptor).Load(); return(coll); }