AdmMono/src/com/rjconsultores/ventaboletos/service/ParamCompraPuntoService.java

22 lines
582 B
Java

/*
* 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<ParamCompraPunto, Integer> {
public List<ParamCompraPunto> buscar(Date ini, Date fim);
public List<ParamCompraPunto> buscar(Date ini, Date fim, Integer cantPuntos, BigDecimal costoPunto);
}