public async Task <IActionResult> Edit(int id, [Bind("Id,Nome,Sobrenome,Nascimento,DiaDoTreino")] Participante participante) { if (id != participante.Id) //,GeneroParticipante,Telefone,Endereco,Bairro,Cidade,CEP { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(participante); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ParticipanteExists(participante.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(participante)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Dia,Horario,Local")] Treino treino) { if (id != treino.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(treino); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TreinoExists(treino.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(treino)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Nome,Sobrenome,Nascimento")] TreinoQuinta treinoQuinta) { if (id != treinoQuinta.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(treinoQuinta); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TreinoQuintaExists(treinoQuinta.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(treinoQuinta)); }