20 lines
524 B
Java
20 lines
524 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.dao;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.Parada;
|
|
import com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
*
|
|
* @author Rafius
|
|
*/
|
|
public interface ParamAcumulaPuntoDAO extends GenericDAO<ParamAcumulaPunto, Integer> {
|
|
|
|
public List<ParamAcumulaPunto> buscar(Parada origem, Parada destino, Date ini, Date fim);
|
|
}
|