|
|
@ -541,38 +541,6 @@ public class Administration { |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void createCourse(String courseName, String courseID, int credits) { |
|
|
|
// Check if a course with the given ID already exists |
|
|
|
if (findCourseByID(courseID) != null) { |
|
|
|
System.out.println("A course with ID " + courseID + " already exists."); |
|
|
|
} else { |
|
|
|
Course newCourse = new Course(courseName, courseID, credits); |
|
|
|
courses.add(newCourse); |
|
|
|
System.out.println("Course " + courseName + " (" + courseID + ") created successfully."); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public boolean enrollStudentInCourse(String studentId, String courseId) { |
|
|
|
Student student = findStudentById(studentId); |
|
|
|
Course course = findCourseByID(courseId); |
|
|
|
if (student != null && course != null) { |
|
|
|
// If the course is not already enrolled |
|
|
|
if (!student.getCourseGrades().containsKey(course)) { |
|
|
|
student.getCourseGrades().put(course, "Not Graded"); |
|
|
|
System.out.println("Student " + studentId + " enrolled in course " + courseId + "."); |
|
|
|
return true; |
|
|
|
} else { |
|
|
|
System.out.println("Student " + studentId + " is already enrolled in course " + courseId + "."); |
|
|
|
return false; |
|
|
|
} |
|
|
|
} else { |
|
|
|
if (student == null) System.out.println("Student ID not found."); |
|
|
|
if (course == null) System.out.println("Course ID not found."); |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|