| Version 1 (modified by , 2 days ago) ( diff ) |
|---|
UseCase1004 – Create Subject
Initiating actor: Administrator
Other actors: None
Description: Administrator creates a new subject within the system and associates it with a specific faculty's curriculum.
Scenario:
- Administrator selects option “Create Subject”.
- System lists all available faculties to choose from:
SELECT Id, Name FROM Faculty;
- Administrator selects a faculty and fills out the subject details form:
- Name
- Semester
- Credits
- Administrator submits the data.
- System inserts the new subject into the database:
INSERT INTO Subject(Name, Semester, Credits, Faculty_Id) VALUES (:name, :semester, :credits, :faculty_id);
- System confirms that the subject was successfully added to the faculty curriculum.
Note:
See TracWiki
for help on using the wiki.
