| Version 1 (modified by , 3 weeks ago) ( diff ) |
|---|
UseCase2003 – Register Subject to Faculty
Initiating actor: Professor
Other actors: Administrator
Description: A professor creates or registers a subject that belongs to their faculty and will be available for students.
Scenario:
- Professor selects “Add New Subject”
- System shows subject creation form:
- Name
- Semester
- Credits
- Professor submits subject information.
- System inserts subject into database:
INSERT INTO Subject(Faculty_Id, Name, Semester, Credits) VALUES (:faculty_id, :name, :semester, :credits);
- System links subject to professor:
INSERT INTO Subject_Professor(Subject_Id, Professor_Id) VALUES (:subject_id, :professor_id);
- System confirms subject registration.
Note:
See TracWiki
for help on using the wiki.
