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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public RisTipoDocumentoCollection FetchAll()
        {
            RisTipoDocumentoCollection coll = new RisTipoDocumentoCollection();
            Query qry = new Query(RisTipoDocumento.Schema);

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