19 lines
503 B
Java
19 lines
503 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.Parada;
|
|
import com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada;
|
|
import java.util.List;
|
|
|
|
/**
|
|
*
|
|
* @author Desenvolvimento
|
|
*/
|
|
public interface TaxaEmbarqueParadaService extends GenericService<TaxaEmbarqueParada, Integer> {
|
|
|
|
public List<TaxaEmbarqueParada> buscarPorLocalidade(Parada parada);
|
|
}
|