AdmMono/src/com/rjconsultores/ventaboletos/service/TaxaEmbarqueKmService.java

21 lines
512 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.OrgaoConcedente;
import com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueKm;
import java.util.List;
/**
*
* @author Desenvolvimento
*/
public interface TaxaEmbarqueKmService extends GenericService<TaxaEmbarqueKm, Integer>{
public List<TaxaEmbarqueKm> buscarPorOrgao(OrgaoConcedente orgaoconcedenteId);
}