/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.service; import com.rjconsultores.ventaboletos.entidad.RedondeoCtrl; import java.math.BigDecimal; import java.util.List; /** * * @author Administrador */ public interface RedondeoCtrlService extends GenericService { public List buscar(RedondeoCtrl redondeoCtrl); public List buscarTraslapa(Short[] iDMarcas, BigDecimal valorinicial, BigDecimal valorfinal, Boolean indaplicadescuento, Boolean indaplicapricing); }