Ejemplo n.º 1
0
        public async Task <ActionResult <Agendamento> > PutAgendamentoAsync(long idagendamento, Agendamento agendamento)
        {
            if (idagendamento != agendamento.IdAgendamento)
            {
                return(BadRequest());
            }

            _context.Entry(agendamento).State = EntityState.Modified;
            await _context.SaveChangesAsync();

            return(NoContent());
        }
Ejemplo n.º 2
0
        public async Task <ActionResult <Usuario> > PutUsuarioAsync(long idUsuario, Usuario Usuario)
        {
            if (idUsuario != Usuario.IdUsuario)
            {
                return(BadRequest());
            }

            _context.Entry(Usuario).State = EntityState.Modified;
            await _context.SaveChangesAsync();

            return(NoContent());
        }
Ejemplo n.º 3
0
        public async Task <ActionResult <Evento> > PutEventoAsync(long idEvento, Evento evento)
        {
            if (idEvento != evento.IdEvento)
            {
                return(BadRequest());
            }

            _context.Entry(evento).State = EntityState.Modified;
            await _context.SaveChangesAsync();

            return(NoContent());
        }