Changes between Initial Version and Version 1 of UC1004


Ignore:
Timestamp:
06/15/26 14:13:25 (2 days ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UC1004

    v1 v1  
     1= UseCase1004 – Create Subject
     2
     3**Initiating actor:** Administrator
     4
     5**Other actors:** None
     6
     7**Description:**
     8Administrator creates a new subject within the system and associates it with a specific faculty's curriculum.
     9
     10**Scenario:**
     11
     121. Administrator selects option “Create Subject”.
     13
     142. System lists all available faculties to choose from:
     15{{{
     16SELECT Id, Name FROM Faculty;
     17}}}
     18
     193. Administrator selects a faculty and fills out the subject details form:
     20 - Name
     21 - Semester
     22 - Credits
     23
     244. Administrator submits the data.
     25
     265. System inserts the new subject into the database:
     27{{{
     28INSERT INTO Subject(Name, Semester, Credits, Faculty_Id)
     29VALUES (:name, :semester, :credits, :faculty_id);
     30}}}
     31
     326. System confirms that the subject was successfully added to the faculty curriculum.