/// <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); }
public int Update(StudentModel t) { return(ist.Update(t)); }