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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public AprZScorePesoEstaturaCollection FetchByID(object Id)
        {
            AprZScorePesoEstaturaCollection coll = new AprZScorePesoEstaturaCollection().Where("id", Id).Load();

            return(coll);
        }