wiki:UC1002

UseCase1002 – Update Faculty

Initiating actor: Administrator

Other actors: None

Description: Administrator modifies faculty data, such as location, name, or study field.

Scenario:

  1. Administrator logs in and selects “Update Faculty.”
  1. System lists all faculties:
SELECT Id, Name, Location, Study_field FROM Faculty;
  1. Administrator selects a faculty and updates details.
  1. System validates input and updates database:
UPDATE Faculty
SET Name = :name, Location = :location, Study_field = :study_field
WHERE Id = :faculty_id;
  1. 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.