コード例 #1
0
 /// <summary>
 /// Deletes the student worker and all information belonging to them from the database
 /// </summary>
 public void RemoveStudentWorker()
 {
     //Remove the student worker, their schedules, and the subjects they tutor
     DatabaseManager.RemoveStudentWorker(StudentID);
     DatabaseManager.RemoveStudentWorkersSchedules(StudentID);
 }