| Version 1 (modified by , 3 weeks ago) ( diff ) |
|---|
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.
Note:
See TracWiki
for help on using the wiki.
