Package hsv.beans

Examples of hsv.beans.Setor


    public Setor consultarPorDescricao(String nomeSetor){
        Session session = HibernateUtil.getSessionFactory().openSession();
        session.beginTransaction();
        Query lista = session.createQuery("From Setor where nomeSetor = :descricao and codigoEmpresa=2");
        lista.setString("descricao", nomeSetor);
        Setor resultado = (Setor) lista.uniqueResult();
        session.getTransaction().commit();
        session.close();
        return resultado;
    }
View Full Code Here

TOP

Related Classes of hsv.beans.Setor

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.