gleimar 2014-02-19 01:24:12 +00:00
parent b8c556892f
commit 279d88751c
1 changed files with 2 additions and 5 deletions

View File

@ -6,13 +6,10 @@ package com.rjconsultores.ventaboletos.service;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.InstiFinanceira;
public interface InstiFinanceiraService {
public interface InstiFinanceiraService extends GenericService<InstiFinanceira, Integer> {
public List<InstiFinanceira> obtenerTodos();
public List<InstiFinanceira> buscar(String nome);
}