示例#1
0
        public AprControlNiñoSanoHemoglobinaCollection FetchByQuery(Query qry)
        {
            AprControlNiñoSanoHemoglobinaCollection coll = new AprControlNiñoSanoHemoglobinaCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public AprControlNiñoSanoHemoglobinaCollection FetchAll()
        {
            AprControlNiñoSanoHemoglobinaCollection coll = new AprControlNiñoSanoHemoglobinaCollection();
            Query qry = new Query(AprControlNiñoSanoHemoglobina.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public AprControlNiñoSanoHemoglobinaCollection FetchByID(object IdControlNiñoSanoHemoglobina)
        {
            AprControlNiñoSanoHemoglobinaCollection coll = new AprControlNiñoSanoHemoglobinaCollection().Where("idControlNiñoSanoHemoglobina", IdControlNiñoSanoHemoglobina).Load();

            return(coll);
        }