Changes between Version 4 and Version 5 of UseCase1001Implementation


Ignore:
Timestamp:
09/09/26 13:23:59 (30 hours ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase1001Implementation

    v4 v5  
    1 = UseCase1001Implementation – Add University
     1Use-case UC1001 Implementation - Add University
    22
    3 **Initiating actor:** Administrator
     3Initiating actor: Administrator
     4Other actors: None
     5Description: Administrator adds a new university to the system database.
    46
    5 **Other actors:** None
     7Scenario:
    68
    7 **Description:** Administrator adds a new university to the system.
     91. User selects "1. Add University" from the Admin Menu.
     10   [[Image(admin_menu.png, 800px)]]
    811
    9 **Scenario:**
     122. System prompts the user to enter the University Name, Location, and Is_Private status.
    1013
    11 1. System displays Admin Menu.
     143. User inputs the requested university details.
     15   [[Image(add_university_input.png, 800px)]]
    1216
    13 2. Admin selects Add University.
     174. System executes the SQL query to insert the new university into the database:
     18   {{{
     19   INSERT INTO University(Name, Location, Is_Private) VALUES (?, ?, ?);
     20   }}}
    1421
    15 3. System prompts for Name, Location, Is_Private.
    16 
    17 4. Admin inputs data.
    18 
    19 5. System executes SQL:
    20 {{{
    21 INSERT INTO University(Name, Location, Is_Private) VALUES (?, ?, ?);
    22 }}}
    23 
    24 6. System confirms addition.
    25 
    26 [[Image(addUniversity.jpg, 800px)]]
     225. System displays a confirmation message indicating that the university was successfully added.
     23   [[Image(add_university_success.png, 800px)]]