public RisConcentimientoCollection FetchByQuery(Query qry) { RisConcentimientoCollection coll = new RisConcentimientoCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public RisConcentimientoCollection FetchAll() { RisConcentimientoCollection coll = new RisConcentimientoCollection(); Query qry = new Query(RisConcentimiento.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public RisConcentimientoCollection FetchByID(object IdConcentimiento) { RisConcentimientoCollection coll = new RisConcentimientoCollection().Where("idConcentimiento", IdConcentimiento).Load(); return(coll); }