Esempio n. 1
0
 public DataTable PesquisaTabelaVenda(int numVenda, int numCaixa)
 {
     try
     {
         novaVenda = new AcessoDados.VendaAcessoDados();
         DataTable dadosTabela = new DataTable();
         dadosTabela = novaVenda.PesquisarTabelaVenda(numVenda, numCaixa);
         return(dadosTabela);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }