/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.service; import com.rjconsultores.ventaboletos.entidad.ParamCompraPunto; import java.math.BigDecimal; import java.util.Date; import java.util.List; /** * * @author Rafius */ public interface ParamCompraPuntoService extends GenericService { public List buscar(Date ini, Date fim); public List buscar(Date ini, Date fim, Integer cantPuntos, BigDecimal costoPunto); }