public async Task <IActionResult> Edit(int id, [Bind("Id,Name")] Department department) { if (id != department.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(department); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DepartmentExists(department.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(department)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Email,BirthDate,Salary")] Seller seller) { if (id != seller.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(seller); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SellerExists(seller.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(seller)); }
public async Task <IActionResult> Edit(int id, [Bind("id,Date,Amount,Status")] SalesRecord salesRecord) { if (id != salesRecord.id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(salesRecord); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SalesRecordExists(salesRecord.id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(salesRecord)); }