public PnGrupoPrestacionCollection FetchByQuery(Query qry) { PnGrupoPrestacionCollection coll = new PnGrupoPrestacionCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public PnGrupoPrestacionCollection FetchAll() { PnGrupoPrestacionCollection coll = new PnGrupoPrestacionCollection(); Query qry = new Query(PnGrupoPrestacion.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public PnGrupoPrestacionCollection FetchByID(object IdGrupoPrestacion) { PnGrupoPrestacionCollection coll = new PnGrupoPrestacionCollection().Where("id_grupo_prestacion", IdGrupoPrestacion).Load(); return(coll); }