wiki:UC1003

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:

  1. Administrator selects “Assign Professor to University”
  1. System lists all universities:
    SELECT Id, Name
    FROM University;
    
  1. Administrator selects one university.
  1. System lists all professors:
    SELECT Id, Name, Surname
    FROM Professor;
    
  1. Administrator selects professor and confirms assignment.
  1. System records affiliation:
    INSERT INTO Affiliated(University_Id, Professor_Id)
    VALUES (:university_id, :professor_id);
    
  1. 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.