/* * 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.PricingVigencia; import java.util.Date; import java.util.List; /** * * @author Rafius */ public interface PricingVigenciaService extends GenericService { public List buscarPorVigencias(PricingVigencia pv); public Boolean podeSalvar(Pricing pricing, PricingVigencia pricingVigencia, Date inicio, Date fim); public void borrar(List pricingVigenciaList); }