Examples of RepassePA


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
Copyright © 2018 www.massapi.com. 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.