Beispiel #1
0
        public async Task <IActionResult> PutContagemCheque(int id, ContagemCheque contagemCheque)
        {
            if (id != contagemCheque.ContagemChequeId)
            {
                return(BadRequest());
            }

            _context.Entry(contagemCheque).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!ContagemChequeExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }
Beispiel #2
0
        public async Task <IActionResult> PutContagemCedula([FromRoute] int id, [FromBody] ContagemCedula contagemCedula)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            if (id != contagemCedula.ContagemCedulaId)
            {
                return(BadRequest());
            }

            _context.Entry(contagemCedula).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!ContagemCedulaExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }
Beispiel #3
0
        public async Task <IActionResult> PutMovimento([FromRoute] int id, [FromBody] Movimento movimento)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            if (id != movimento.MovimentoId)
            {
                return(BadRequest());
            }

            _context.Entry(movimento).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!MovimentoExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }