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