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