public DataTable GerarRelatorioVendaTotal(int idUsuario, int numcaixa) { try { novaVenda = new AcessoDados.VendaAcessoDados(); DataTable dadosTabela = new DataTable(); dadosTabela = novaVenda.GerarRelatorioVendaTotal(idUsuario, numcaixa); return(dadosTabela); } catch (Exception ex) { throw new Exception(ex.Message); } }