20 lines
860 B
Java
20 lines
860 B
Java
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<RelatorioFinanceiroReceitasDespesasBean> getRelatorioDetalhado(Map<String, Object> parametros) throws BusinessException;
|
|
|
|
public List<RelatorioFinanceiroReceitasDespesasBean> getRelatorioSintetico(Map<String, Object> parametros) throws BusinessException;
|
|
|
|
public List<RelatorioFinanceiroReceitasDespesasBean> getRelatorioAgencia(Map<String, Object> parametros) throws BusinessException;
|
|
|
|
public List<RelatorioFinanceiroReceitasDespesasBean> getRelatorioEvento(Map<String, Object> parametros) throws BusinessException;
|
|
|
|
}
|