package com.rjconsultores.ventaboletos.dao; import java.util.List; import java.util.Map; import com.rjconsultores.ventaboletos.exception.BusinessException; import com.rjconsultores.ventaboletos.relatorios.receitaDespesa.RelatorioFinanceiroReceitasDespesasBean; public interface ReceitaDespesaDAO { public List getRelatorioDetalhado(Map parametros) throws BusinessException; public List getRelatorioSintetico(Map parametros) throws BusinessException; public List getRelatorioAgencia(Map parametros) throws BusinessException; public List getRelatorioEvento(Map parametros) throws BusinessException; }