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

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

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