/* * 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.Empresa; import com.rjconsultores.ventaboletos.entidad.PrecioFixoPedagio; /** * * @author Administrador */ public interface PrecioFixoPedagioService extends GenericService { public List buscarPorNome(String nomeClaseServicio); public List buscarTodosExceto(Integer ... idClase); public List buscarPorEmpresasDoUsuario (List empresasUsuario); public Boolean validarInclusaoPrecoFixo(PrecioFixoPedagio precoFixoPedagio); public List buscarPrecioFixoPedagio(PrecioFixoPedagio obj); }