// GET: Eventos1/Edit/5 public IActionResult Edit(int?id) { EventoViewModel evento = new EventoViewModel(); if (id.HasValue && id != 0) { Evento eventoEntity = _ieventosService.GetEventos(id.Value); evento.Nombre = eventoEntity.Nombre; evento.Descripcion = eventoEntity.Descripcion; evento.Fechainicio = eventoEntity.Fechainicio; evento.Fechafin = eventoEntity.Fechainicio; } return(View(evento)); }
public IActionResult GetEventos([FromRoute] int id) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } var eventos = _ieventosService.GetEventos(id); if (eventos == null) { return(NotFound()); } return(Ok(eventos)); }