File size: 1,673 Bytes
111a4bd
639b49a
07a965f
639b49a
 
 
 
 
 
 
 
 
 
 
 
 
 
111a4bd
639b49a
 
07a965f
 
 
 
 
 
 
639b49a
 
fbc5a5b
639b49a
 
 
 
936014b
639b49a
 
 
 
936014b
639b49a
 
 
 
 
 
 
 
 
 
02bb7cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from typing import Optional
from utils.enums.grade import Grade
import uuid

from .student import Student

from sqlmodel import SQLModel, Field, Relationship


class Enrollment(SQLModel, table=True):
    """
    Represents an Enrollment, including the student, the course they are enrolled in, and the assigned grade.

    Attributes:
        id: (int): The enrollment ID
        student_id (str): The ID of the student who is enrolled in the course.
        course_id (str): The ID of the course in which the student is enrolled.
        grade (str): The grade assigned to the student for the course. Default if NO_GRADE with enum value of None if no grade has been assigned yet.
    """

    id: str = Field(
        default_factory=lambda: str(uuid.uuid4()),
        primary_key=True,
        index=True,
        nullable=False,
        sa_column_kwargs={"unique": True}
    )
    student_id: str = Field(foreign_key="student.id")
    course_id: str = Field(foreign_key="course.id")
    grade: str = Field(default=None)

    course: "Course" = Relationship(
        back_populates="enrollments")

    def assign_grade(self, grade: str) -> None:
        """
        Assigns a grade to the student for the course.

        Args:
            grade (str): The grade to assign to the student.
        """
        self.grade = grade

    def __str__(self) -> str:
        """
        Returns a string representation of the Enrollment.

        Returns:
            str: A description of the enrollment including the student id_number, course_id, and grade.
        """
        return f"Enrollment(student id: {self.student_id}, course: {self.course_id}, grade: {self.grade})"