package project.educatum.repository; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import project.educatum.model.relations.TeacherStudentRelation; import project.educatum.model.primarykeys.TeacherStudentRelationID; @Repository public interface TeacherStudentRepository extends JpaRepository { TeacherStudentRelation findAllById(TeacherStudentRelationID teacherStudentRelationID); }