public AprControlNiñoSanoHemoglobinaCollection FetchByQuery(Query qry) { AprControlNiñoSanoHemoglobinaCollection coll = new AprControlNiñoSanoHemoglobinaCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public AprControlNiñoSanoHemoglobinaCollection FetchAll() { AprControlNiñoSanoHemoglobinaCollection coll = new AprControlNiñoSanoHemoglobinaCollection(); Query qry = new Query(AprControlNiñoSanoHemoglobina.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public AprControlNiñoSanoHemoglobinaCollection FetchByID(object IdControlNiñoSanoHemoglobina) { AprControlNiñoSanoHemoglobinaCollection coll = new AprControlNiñoSanoHemoglobinaCollection().Where("idControlNiñoSanoHemoglobina", IdControlNiñoSanoHemoglobina).Load(); return(coll); }