Exemple #1
0
        public AprControlNiñoSanoCollection FetchByQuery(Query qry)
        {
            AprControlNiñoSanoCollection coll = new AprControlNiñoSanoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public AprControlNiñoSanoCollection FetchAll()
        {
            AprControlNiñoSanoCollection coll = new AprControlNiñoSanoCollection();
            Query qry = new Query(AprControlNiñoSano.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public AprControlNiñoSanoCollection FetchByID(object IdControlNiñoSano)
        {
            AprControlNiñoSanoCollection coll = new AprControlNiñoSanoCollection().Where("idControlNiñoSano", IdControlNiñoSano).Load();

            return(coll);
        }