package com.rjconsultores.ventaboletos.dao; import java.util.List; import com.rjconsultores.ventaboletos.entidad.EmpresaContaBancaria; import com.rjconsultores.ventaboletos.entidad.InstiFinanceira; public interface InstiFinanceiraDAO extends GenericDAO { public List buscar(String nome); public List buscarContasBancariasPorIdEmpresa(Integer empresaId); }