AdmMono/src/com/rjconsultores/ventaboletos/dao/ParamAcumulaPuntoDAO.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);
}