/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.service; import com.rjconsultores.ventaboletos.entidad.Pricing; import com.rjconsultores.ventaboletos.entidad.PricingOcupacion; import java.math.BigDecimal; import java.util.List; /** * * @author Rafius */ public interface PricingOcupacionService extends GenericService { public Boolean podeSalvar(Pricing pricing, BigDecimal min, BigDecimal max); public List obtenerPorPricing(Pricing pricing); }