/* * 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 { public List buscarPorLocalidade(Parada parada); }