| Version 4 (modified by , 4 months 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(ssId, Student_Id, Subject_Id, Status, Enrollment_Date) VALUES (?, ?, ?, 'ENROLLED', CURRENT_DATE);
- System confirms enrollment.
Attachments (5)
- enrollSubject1.jpg (132.6 KB ) - added by 5 months ago.
- enrollSubject1.png (83.8 KB ) - added by 7 days ago.
- enrollSubject2.png (187.6 KB ) - added by 7 days ago.
- enrollSubject3.png (163.8 KB ) - added by 7 days ago.
- enrollSubject4.png (89.5 KB ) - added by 7 days ago.
Download all attachments as: .zip
Note:
See TracWiki
for help on using the wiki.

