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