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