/// <summary>
 /// Returns whether the given lecturerID is existing or not
 /// </summary>
 /// <param name="lecturerID">Id of a particular lecturer</param>
 /// <returns>True or False</returns>
 public bool CheckLecturerID(string lecturerID)
 {
     return(studentDataService.CheckLecturerID(lecturerID));
 }