public List <string> GetAllStudentIDAsList() { List <string> studentIds = new List <string>(); try { studentIds = studentDao.GetAllStudentIDAsList(); } catch (CustomException e) { throw e; } return(studentIds); }