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

            return(coll);
        }