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