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, 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))); } ViewData["SellerId"] = new SelectList(_context.Seller, "Id", "Email", salesRecord.SellerId); return(View(salesRecord)); }
public async Task UpdateAsync(Seller seller) { bool any = await _context.Seller.AnyAsync(x => x.Id == seller.Id); if (!any) { throw new NotFoundException("ID NOT FOUND!"); } try { _context.Update(seller); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException e) { throw new DbConcurrencyException(e.Message); } }