/// <summary> /// Add a subject to the list of subjects the student worker tutors /// </summary> /// <param name="subjectID">The ID of the subject to be added to the list</param> public void AddSubjectTutored(int subjectID) { DatabaseManager.AddSubjectTutored(subjectID, StudentID); }