Changes between Initial Version and Version 1 of UC1003


Ignore:
Timestamp:
02/04/26 12:38:13 (3 weeks ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UC1003

    v1 v1  
     1= UseCase1003 – Assign Professors to Universities
     2
     3**Initiating actor:** Administrator
     4
     5**Other actors:** Professor
     6
     7**Description:**
     8Administrator links professors to a university, meaning they are officially affiliated with that institution.
     9
     10**Scenario:**
     11
     121. Administrator selects “Assign Professor to University”
     13
     142. System lists all universities:
     15{{{
     16SELECT Id, Name
     17FROM University;
     18}}}
     19
     203. Administrator selects one university.
     21
     224. System lists all professors:
     23{{{
     24SELECT Id, Name, Surname
     25FROM Professor;
     26}}}
     27
     285. Administrator selects professor and confirms assignment.
     29
     306. System records affiliation:
     31{{{
     32INSERT INTO Affiliated(University_Id, Professor_Id)
     33VALUES (:university_id, :professor_id);
     34}}}
     35
     367. System shows success message.