/* * 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 { public Boolean obtenerPricingRuta(Pricing pricing, Ruta ruta); public void borrar(List pricingRutas); }