public async Task <IActionResult> Edit(int id, [Bind("ProductId,Name,Description,SupplierId,CategoryId,Cost,ReorderLevel,WeightUnitOfMeasure,Weight,Quantity,LastUpdate")] Product product) { if (id != product.ProductId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(product); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductExists(product.ProductId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["CategoryId"] = new SelectList(_context.Category, "CategoryId", "Name", product.CategoryId); ViewData["SupplierId"] = new SelectList(_context.Supplier, "SupplierId", "Name", product.SupplierId); return(View(product)); }
public async Task <IActionResult> Edit(int id, [Bind("CustomerId,LastUpdate")] Customer customer) { if (!_authenticationService.isUserAdmin(Request)) { return(RedirectToAction(nameof(AccountController.AccessDenied), "Account")); } if (id != customer.CustomerId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(customer); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CustomerExists(customer.CustomerId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(customer)); }
public async Task <IActionResult> Edit(int id, [Bind("AddressId,State,Zip,City,Street,House,LastUpdate")] Address address) { if (id != address.AddressId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(address); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AddressExists(address.AddressId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(address)); }
public async Task <IActionResult> Edit(int id, [Bind("SupplierId,Name,AddressId,LastUpdate")] Supplier supplier) { if (!CheckAuthentication(Request, Response)) { return(RedirectToAction(nameof(AccountController.AccessDenied), "Account")); } if (id != supplier.SupplierId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(supplier); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SupplierExists(supplier.SupplierId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["AddressId"] = new SelectList(_context.Address, "AddressId", "City", supplier.AddressId); return(View(supplier)); }
public async Task <IActionResult> Edit(int id, [Bind("CustomerId,CustomerSource,ProductId,ProductSource,ProductQuantity,LastUpdate")] ShoppingCart shoppingCart) { if (id != shoppingCart.CustomerId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(shoppingCart); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ShoppingCartExists(shoppingCart.CustomerId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(shoppingCart)); }