public AprZScoreLongitudEstaturaEdadCollection FetchByQuery(Query qry)
        {
            AprZScoreLongitudEstaturaEdadCollection coll = new AprZScoreLongitudEstaturaEdadCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public AprZScoreLongitudEstaturaEdadCollection FetchAll()
        {
            AprZScoreLongitudEstaturaEdadCollection coll = new AprZScoreLongitudEstaturaEdadCollection();
            Query qry = new Query(AprZScoreLongitudEstaturaEdad.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }