/* * 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 { public List buscar(Parada origem, Parada destino, Date ini, Date fim); }