Changes between Version 5 and Version 6 of UseCase1001Implementation


Ignore:
Timestamp:
09/10/26 12:11:59 (8 hours ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase1001Implementation

    v5 v6  
    1 Use-case UC1001 Implementation - Add University
     1== Use-case UC1001 Implementation - Add University
    22
    3 Initiating actor: Administrator
    4 Other actors: None
    5 Description: Administrator adds a new university to the system database.
     3** Initiating actor:**  Administrator
    64
    7 Scenario:
     5**Other actors:** None
     6
     7**Description:**  Administrator adds a new university to the system database.
     8
     9**Scenario:**
    810
    9111. User selects "1. Add University" from the Admin Menu.
     12
    1013   [[Image(admin_menu.png, 800px)]]
    1114
     
    1316
    14173. User inputs the requested university details.
     18
    1519   [[Image(add_university_input.png, 800px)]]
    1620
    17214. System executes the SQL query to insert the new university into the database:
     22
    1823   {{{
    1924   INSERT INTO University(Name, Location, Is_Private) VALUES (?, ?, ?);
     
    2126
    22275. System displays a confirmation message indicating that the university was successfully added.
     28
    2329   [[Image(add_university_success.png, 800px)]]