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

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

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

            return(coll);
        }