Changes between Initial Version and Version 1 of UC3002
- Timestamp:
- 02/04/26 12:52:54 (3 weeks ago)
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:** 8 Student views grades for completed subjects. 9 10 **Scenario:** 11 12 1. Student selects “My Grades” 13 14 2. System retrieves all completed enrollments: 15 {{{ 16 SELECT sub.Name, ss.Final_Grade 17 FROM Student_Subject ss 18 JOIN Subject sub ON ss.Subject_Id = sub.Id 19 WHERE ss.Student_Id = :student_id 20 AND ss.Status = 'COMPLETED'; 21 }}} 22 23 3. System displays grades in a table.
