11 lines
391 B
Java
11 lines
391 B
Java
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.CasetaPeaje;
|
|
import com.rjconsultores.ventaboletos.entidad.CasetaPeajeExcepcion;
|
|
|
|
public interface CasetaPeajeExcepcionService extends GenericService<CasetaPeajeExcepcion, Integer> {
|
|
public List<CasetaPeajeExcepcion> buscarPorCasetaPeaje(CasetaPeaje caseta);
|
|
}
|