Changes between Version 1 and Version 2 of UC1002
- Timestamp:
- 02/03/26 20:50:35 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UC1002
v1 v2 1 UseCase1002 – Update Faculty1 = UseCase1002 – Update Faculty 2 2 3 Initiating actor: Administrator 4 Other actors: None 3 **Initiating actor:** Administrator 5 4 6 Description: 5 **Other actors:** None 6 7 **Description:** 7 8 Administrator modifies faculty data, such as location, name, or study field. 8 9 9 Scenario: 10 **Scenario:** 10 11 11 Administrator logs in and selects “Update Faculty.”12 1. Administrator logs in and selects “Update Faculty.” 12 13 13 System lists all faculties:14 2. System lists all faculties: 14 15 16 {{{ 15 17 SELECT Id, Name, Location, Study_field FROM Faculty; 18 }}} 16 19 17 20 18 Administrator selects a faculty and updates details.21 3. Administrator selects a faculty and updates details. 19 22 20 System validates input and updates database:23 4. System validates input and updates database: 21 24 25 {{{ 22 26 UPDATE Faculty 23 27 SET Name = :name, Location = :location, Study_field = :study_field 24 28 WHERE Id = :faculty_id; 29 }}} 25 30 26 31 27 System confirms update and reflects changes across related data (students, professors, subjects).32 5. System confirms update and reflects changes across related data (students, professors, subjects).
