public async Task <IActionResult> Edit(int id, [Bind("Id,Description")] Responsibility responsibility) { if (id != responsibility.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(responsibility); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ResponsibilityExists(responsibility.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(responsibility)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,JobId,JobSiteId,Url,Text")] JobPosting jobPosting) { if (id != jobPosting.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(jobPosting); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!JobPostingExists(jobPosting.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(jobPosting)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name")] Employer employer) { if (id != employer.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(employer); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EmployerExists(employer.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(employer)); }