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

13 lines
367 B
Java

package com.rjconsultores.ventaboletos.service;
import com.rjconsultores.ventaboletos.entidad.OrgaoConcedente;
import com.rjconsultores.ventaboletos.entidad.SeguroTarifa;
import java.util.List;
public interface SeguroTarifaService extends GenericService<SeguroTarifa, Integer>{
public List<SeguroTarifa> buscarPorOrgao(OrgaoConcedente orgao);
}