public async Task <IActionResult> Edit(int id, [Bind("IdRetoEjercicio,IdReto,IdEjercicio")] RetoEjercicio retoEjercicio) { if (id != retoEjercicio.IdRetoEjercicio) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(retoEjercicio); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!RetoEjercicioExists(retoEjercicio.IdRetoEjercicio)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(retoEjercicio)); }
public async Task <IActionResult> Create([Bind("IdRetoEjercicio,IdReto,IdEjercicio")] RetoEjercicio retoEjercicio) { if (ModelState.IsValid) { _context.Add(retoEjercicio); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(retoEjercicio)); }