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

22 lines
597 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.Pricing;
import com.rjconsultores.ventaboletos.entidad.PricingOcupacion;
import java.math.BigDecimal;
import java.util.List;
/**
*
* @author Rafius
*/
public interface PricingOcupacionService extends GenericService<PricingOcupacion, Integer> {
public Boolean podeSalvar(Pricing pricing, BigDecimal min, BigDecimal max);
public List<PricingOcupacion> obtenerPorPricing(Pricing pricing);
}