Basic workflow
Input
School().add_student('Alice', 1).add_teacher('Mr Lee', 10).assign_teacher_to_class(10, 'Math').enroll_student_in_class(1, 'Math').get_students_in_class('Math')
Output
['Alice']
Create a School, add one student and one teacher, assign the teacher to 'Math', enroll the student in 'Math', and list students in 'Math'.