diff --git a/StudentRepository.java b/StudentRepository.java new file mode 100644 index 0000000..719b8fb --- /dev/null +++ b/StudentRepository.java @@ -0,0 +1,9 @@ +package com.example.classroomattendance.repository; + +import com.example.classroomattendance.model.Student; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +@Repository +public interface StudentRepository extends JpaRepository { +} \ No newline at end of file