public async Task <IActionResult> Edit(int id, [Bind("Id,FirstName,Lastname,DateofBirth,Gender,BloodGroup,Nationality,Class,Religion,Email,Telephone,Address")] Student student) { if (id != student.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(student); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StudentExists(student.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(student)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Position,Age,Salary")] 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,StundentID,RegistredCourse")] StudentCourse studentCourse) { if (id != studentCourse.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(studentCourse); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StudentCourseExists(studentCourse.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(studentCourse)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,SubjectName,TeacherName")] Course course) { if (id != course.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(course); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CourseExists(course.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(course)); }