public async Task <IActionResult> Edit(int id, [Bind("Id,Name")] Phone phone) { if (id != phone.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(phone); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PhoneExists(phone.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(phone)); }
public async Task <IActionResult> Edit(int id, [Bind("ID,EMAIL,ID_Department")] Config config) { if (id != config.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(config); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ConfigExists(config.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(config)); }