コード例 #1
0
ファイル: VendaRegraNegocios.cs プロジェクト: tiautocom/CFe
 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);
     }
 }