public AprZScoreIMCEdadCollection FetchByQuery(Query qry) { AprZScoreIMCEdadCollection coll = new AprZScoreIMCEdadCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public AprZScoreIMCEdadCollection FetchAll() { AprZScoreIMCEdadCollection coll = new AprZScoreIMCEdadCollection(); Query qry = new Query(AprZScoreIMCEdad.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public AprZScoreIMCEdadCollection FetchByID(object Id) { AprZScoreIMCEdadCollection coll = new AprZScoreIMCEdadCollection().Where("id", Id).Load(); return(coll); }