24 lines
588 B
Java
24 lines
588 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.Pricing;
|
|
import com.rjconsultores.ventaboletos.entidad.PricingRuta;
|
|
import com.rjconsultores.ventaboletos.entidad.Ruta;
|
|
|
|
/**
|
|
*
|
|
* @author Rafius
|
|
*/
|
|
public interface PricingRutaService extends GenericService<PricingRuta, Integer> {
|
|
|
|
public Boolean obtenerPricingRuta(Pricing pricing, Ruta ruta);
|
|
|
|
public void borrar(List<PricingRuta> pricingRutas);
|
|
|
|
}
|