Ejemplo n.º 1
0
        public async Task <ActionResult <Usuario> > PostUsuarioAsync([FromBody] Usuario Usuario)
        {
            _context.Usuarios.Add(Usuario);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetUsuarioAsync), new { idUsuario = Usuario.IdUsuario }, Usuario));
        }
Ejemplo n.º 2
0
        public async Task <ActionResult <Agendamento> > PostAgendamentoAsync(Agendamento agendamento)
        {
            _context.Agendamentos.Add(agendamento);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetAgendamentoAsync), new { idagendamento = agendamento.IdAgendamento }, agendamento));
        }
Ejemplo n.º 3
0
        public async Task <ActionResult <UsuarioEvento> > PostUsuarioEventoAsync(UsuarioEvento UsuarioEvento)
        {
            _context.UsuarioEventos.Add(UsuarioEvento);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetUsuarioEventoAsync), new { idUsuarioEvento = UsuarioEvento.IdUsuarioEvento }, UsuarioEvento));
        }
        public async Task <ActionResult <AgendamentoUsuario> > PostAgendamentoUsuarioAsync(AgendamentoUsuario AgendamentoUsuario)
        {
            _context.AgendamentoUsuarios.Add(AgendamentoUsuario);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetAgendamentoUsuarioAsync), new { idAgendamentoUsuario = AgendamentoUsuario.IdAgendamentoUsuario }, AgendamentoUsuario));
        }
Ejemplo n.º 5
0
        public async Task <ActionResult <Evento> > PostEventoAsync(Evento evento)
        {
            _context.Eventos.Add(evento);

            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetEventoAsync), new { idEvento = evento.IdEvento }, evento));
        }