Changes between Version 3 and Version 4 of UC2002


Ignore:
Timestamp:
06/25/26 15:29:56 (13 hours ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UC2002

    v3 v4  
    1 = UseCase2002 – Advise Student
     1== UC2002 – Advise Student ==
    22
    3 **Initiating actor:** Professor
     3'''Initiating actor:''' Professor
     4'''Other actors:''' None
    45
    5 **Other actors:** None
    6 
    7 **Description:**
     6'''Description:'''
    87A professor records an academic advising relationship with a student for a specific time period.
    98
    10 **Scenario:**
    11 
     9'''Scenario:'''
    12101. Professor selects “Start Advising Student”.
    13 
    14112. System shows a list of students belonging to the same faculty as the professor:
    1512{{{
     
    1916WHERE p.Id = :professor_id;
    2017}}}
    21 
    22183. Professor selects a student and enters the advising start and end dates.
    23 
    24194. System inserts the advising record into the database:
    2520{{{
    26 INSERT INTO Advice(Student_Id, Professor_Id, Start_Date, End_Date)
     21INSERT INTO Advice (Student_Id, Professor_Id, Start_Date, End_Date)
    2722VALUES (:student_id, :professor_id, :start_date, :end_date);
    2823}}}
    29 
    30245. System confirms the advisor assignment.