Changes between Initial Version and Version 1 of UC1001


Ignore:
Timestamp:
02/04/26 12:34:52 (3 weeks ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UC1001

    v1 v1  
     1=UseCase1001 – Add University
     2
     3**Initiating actor:** Administrator
     4
     5**Other actors:** None
     6
     7**Description:**
     8Administrator adds a new university into the system so that faculties and professors can later be connected to it.
     9
     10**Scenario:**
     11
     121. Administrator selects option “Add University”
     13
     142. System shows a form with fields:
     15
     16- Name
     17
     18- Location
     19
     20- isprivate
     21
     223. Administrator enters data and submits.
     23
     244. System inserts the university into the database:
     25{{{
     26INSERT INTO University(Name, Location, IsPrivate)
     27VALUES (:name, :location, :isprivate);
     28}}}
     29
     305. System confirms that the university was successfully created.