UseCase1002 – Update Faculty
Initiating actor: Administrator
Other actors: None
Description: Administrator modifies faculty data, such as location, name, or study field.
Scenario:
- Administrator logs in and selects “Update Faculty.”
- System lists all faculties:
SELECT Id, Name, Location, Study_field FROM Faculty;
- Administrator selects a faculty and updates details.
- System validates input and updates database:
UPDATE Faculty SET Name = :name, Location = :location, Study_field = :study_field WHERE Id = :faculty_id;
- System confirms update and reflects changes across related data (students, professors, subjects).
Last modified
3 weeks ago
Last modified on 02/03/26 20:50:35
Note:
See TracWiki
for help on using the wiki.
