Package maissocial.entidade

Examples of maissocial.entidade.TipoLogradouro


        Session session = factory.openSession();
        Transaction trans = session.beginTransaction();

        trans.begin();

        TipoLogradouro tl2 = pesquisarTipoLogradouroPorCodigo(tl.getCodTipoLogradouro());
        tl.setCodTipoLogradouro(tl2.getCodTipoLogradouro());
        session.update(tl);

        trans.commit();
        session.close();
    }
View Full Code Here

TOP

Related Classes of maissocial.entidade.TipoLogradouro

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.