/// <summary>
 /// Updates the given student on the database.
 /// </summary>
 /// <param name="student">The student to be updated.</param>
 public void UpdateStudent(Student student)
 {
     studentDAO.Update(student);
 }
示例#2
0
 public int Update(StudentModel t)
 {
     return(ist.Update(t));
 }