39 lines
1.3 KiB
Java
39 lines
1.3 KiB
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.dao.hibernate;
|
|
|
|
import com.rjconsultores.ventaboletos.dao.TaxaEmbarqueParadaDAO;
|
|
import com.rjconsultores.ventaboletos.entidad.Parada;
|
|
import com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada;
|
|
import java.util.List;
|
|
import org.hibernate.Criteria;
|
|
import org.hibernate.SessionFactory;
|
|
import org.hibernate.criterion.Restrictions;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Qualifier;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
/**
|
|
*
|
|
* @author Desenvolvimento
|
|
*/
|
|
@Repository("taxaEmbarqueParadaDAO")
|
|
public class TaxaEmbarqueParadaHibernateDAO extends GenericHibernateDAO<TaxaEmbarqueParada, Integer>
|
|
implements TaxaEmbarqueParadaDAO {
|
|
|
|
@Autowired
|
|
public TaxaEmbarqueParadaHibernateDAO(@Qualifier("sessionFactory") SessionFactory factory) {
|
|
setSessionFactory(factory);
|
|
}
|
|
|
|
public List<TaxaEmbarqueParada> buscarPorLocalidade(Parada parada) {
|
|
Criteria c = getSession().createCriteria(getPersistentClass());
|
|
c.add(Restrictions.eq("activo", Boolean.TRUE));
|
|
c.add(Restrictions.eq("paradaId", parada));
|
|
|
|
return c.list();
|
|
}
|
|
}
|