Package hsv.beans

Examples of hsv.beans.RepassePA


        Session session = HibernateUtil.getSessionFactory().openSession();
        session.beginTransaction();
        Query select = session.createQuery("FROM RepassePA WHERE dataVigencia = :data AND codPrestador = :prestador");
        select.setDate("data", repasse.getDataVigencia());
        select.setInteger("prestador", repasse.getCodPrestador());
        RepassePA resultado = (RepassePA) select.uniqueResult();
        session.getTransaction().commit();
        session.close();
        return resultado;
    }
View Full Code Here

TOP

Related Classes of hsv.beans.RepassePA

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.