Advertisement
Guest User

Sicario

a guest
Jul 23rd, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @Override
  2. public List<ServicioVO> getServiciosByIdioma(Long idEstacion) {
  3.  
  4. return this.getSession().createQuery("from ServicioVO s "
  5. + "join fetch s.uServiciosIdiomas u "
  6. + "where u.idIdioma=1 "
  7. + "and idEstacion = :idEstacion").setParameter("idEstacion", idEstacion).list();
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement