| Version 2 (modified by , 3 weeks ago) ( diff ) |
|---|
UseCase3001Implementation – Enroll in Subject
Initiating actor: Student
Other actors: None
Description: Student enrolls in a subject offered by their faculty.
Scenario:
- System displays Student Menu.
- Student selects Enroll in Subject.
- System lists students → selects student ID.
- System lists available subjects → selects subject.
- System checks enrollment:
SELECT * FROM Student_Subject WHERE Student_Id = ? AND Subject_Id = ?;
- If not enrolled, system inserts:
INSERT INTO Student_Subject(Student_Id, Subject_Id, Status, Enrollment_Date) VALUES (?, ?, 'ENROLLED', CURRENT_DATE);
- System confirms enrollment.
Attachments (2)
- enrollSubject1.jpg (132.6 KB ) - added by 3 weeks ago.
- enrollSubject2.jpg (138.6 KB ) - added by 3 weeks ago.
Download all attachments as: .zip
Note:
See TracWiki
for help on using the wiki.


