Changes between Initial Version and Version 1 of UC1002


Ignore:
Timestamp:
02/03/26 20:26:04 (3 weeks ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UC1002

    v1 v1  
     1UseCase1002 – Update Faculty
     2
     3Initiating actor: Administrator
     4Other actors: None
     5
     6Description:
     7Administrator modifies faculty data, such as location, name, or study field.
     8
     9Scenario:
     10
     11Administrator logs in and selects “Update Faculty.”
     12
     13System lists all faculties:
     14
     15SELECT Id, Name, Location, Study_field FROM Faculty;
     16
     17
     18Administrator selects a faculty and updates details.
     19
     20System validates input and updates database:
     21
     22UPDATE Faculty
     23SET Name = :name, Location = :location, Study_field = :study_field
     24WHERE Id = :faculty_id;
     25
     26
     27System confirms update and reflects changes across related data (students, professors, subjects).