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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #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);
        }