コード例 #1
0
ファイル: VendaRegraNegocios.cs プロジェクト: tiautocom/CFe
 public void ExcluirVenda(int numcaixa, int numCupom, int idUsuarioLogado)
 {
     try
     {
         novaVenda = new AcessoDados.VendaAcessoDados();
         novaVenda.ExcluirVenda(numcaixa, numCupom, idUsuarioLogado);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }