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);
        }
        public AprZScoreLongitudEstaturaEdadCollection FetchByID(object Id)
        {
            AprZScoreLongitudEstaturaEdadCollection coll = new AprZScoreLongitudEstaturaEdadCollection().Where("id", Id).Load();

            return(coll);
        }