UseCase1003 – Assign Professors to Universities
Initiating actor: Administrator
Other actors: Professor
Description: Administrator links professors to a university, meaning they are officially affiliated with that institution.
Scenario:
- Administrator selects “Assign Professor to University”
- System lists all universities:
SELECT Id, Name FROM University;
- Administrator selects one university.
- System lists all professors:
SELECT Id, Name, Surname FROM Professor;
- Administrator selects professor and confirms assignment.
- System records affiliation:
INSERT INTO Affiliated(University_Id, Professor_Id) VALUES (:university_id, :professor_id);
- System shows success message.
Last modified
3 weeks ago
Last modified on 02/04/26 12:38:13
Note:
See TracWiki
for help on using the wiki.
