Changes between Initial Version and Version 1 of UC3002


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

--

Legend:

Unmodified
Added
Removed
Modified
  • UC3002

    v1 v1  
     1= UseCase3002 – View Grades
     2
     3**Initiating actor:** Student
     4
     5**Other actors:** None
     6
     7**Description:**
     8Student views grades for completed subjects.
     9
     10**Scenario:**
     11
     121. Student selects “My Grades”
     13
     142. System retrieves all completed enrollments:
     15{{{
     16SELECT sub.Name, ss.Final_Grade
     17FROM Student_Subject ss
     18JOIN Subject sub ON ss.Subject_Id = sub.Id
     19WHERE ss.Student_Id = :student_id
     20AND ss.Status = 'COMPLETED';
     21}}}
     22
     233. System displays grades in a table.