Exemplo n.º 1
0
        public AprEstadoNacimientoCollection FetchByQuery(Query qry)
        {
            AprEstadoNacimientoCollection coll = new AprEstadoNacimientoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public AprEstadoNacimientoCollection FetchAll()
        {
            AprEstadoNacimientoCollection coll = new AprEstadoNacimientoCollection();
            Query qry = new Query(AprEstadoNacimiento.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public AprEstadoNacimientoCollection FetchByID(object IdEstadoNacimiento)
        {
            AprEstadoNacimientoCollection coll = new AprEstadoNacimientoCollection().Where("idEstadoNacimiento", IdEstadoNacimiento).Load();

            return(coll);
        }