21 lines
618 B
Java
21 lines
618 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.RedondeoCtrl;
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
|
|
/**
|
|
*
|
|
* @author Administrador
|
|
*/
|
|
public interface RedondeoCtrlService extends GenericService<RedondeoCtrl, Integer> {
|
|
|
|
public List<RedondeoCtrl> buscar(RedondeoCtrl redondeoCtrl);
|
|
|
|
public List<RedondeoCtrl> buscarTraslapa(Short[] iDMarcas, BigDecimal valorinicial, BigDecimal valorfinal, Boolean indaplicadescuento, Boolean indaplicapricing);
|
|
}
|