Esempio n. 1
0
        public void AlterarNumEntrada(int _numEntrada)
        {
            try
            {
                novaVenda = new AcessoDados.VendaAcessoDados();

                _numEntrada = _numEntrada + 1;
                novaVenda.AlterarNumeroEntrada(_numEntrada);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }