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,EquipType,Model,SubModel,SerialNum,ServiceTag,DateReceived,RequestingDept,RequestedBy,InvoiceNum,Warranty,DecommissionDate,DecommissionStatus,DestroyDate,DestroyStatus,Manufacturer,Vendor,ManufacturerId,VendorId")] Equipment equipment) { if (id != equipment.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(equipment); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EquipmentExists(equipment.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(equipment)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,EquipmentId,RequestedBy,RmaNum,DateShipped,TrackingNum,Recipient,StreetAddress1,StreetAddress2,StreetAddress3,City,StateId,State,Zip,Country,ContactEmail,ContactPhone,ReplacementSerialNumber,Returned,DateReturned")] Repair repair) { if (id != repair.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(repair); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!RepairExists(repair.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(repair)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,FirstName,Name,LastName,Email,ColleaugeId")] Employee employee) { if (id != employee.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(employee); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EmployeeExists(employee.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(employee)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name")] Manufacturer manufacturer) { if (id != manufacturer.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(manufacturer); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ManufacturerExists(manufacturer.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(manufacturer)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Abbreviation")] State state) { if (id != state.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(state); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StateExists(state.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(state)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,ColleagueId,EquipmentId,Location,Floor,RoomNumber,RequestingDepartment,AssignedBy,AssignedDate,UnassignedBy,UnassignedDate")] Assignment assignment) { if (id != assignment.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(assignment); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AssignmentExists(assignment.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(assignment)); }