Package hsv.beans

Examples of hsv.beans.RepasseBanco


     public RepasseBanco consultar(RepasseBanco repasse){  
        Session session = HibernateUtil.getSessionFactory().openSession();
        session.beginTransaction();
        Query select = session.createQuery("FROM RepasseBanco WHERE dataVigencia = :data");
        select.setDate("data", repasse.getDataVigencia());
        RepasseBanco resultado = (RepasseBanco) select.uniqueResult();
        session.getTransaction().commit();     
        session.close();
        return resultado;       
    }
View Full Code Here

TOP

Related Classes of hsv.beans.RepasseBanco

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.