blob: 2d2764420d2dc2d43a71aa67f2b3df6980c66414 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.stileeducation.markr.repository;
import com.stileeducation.markr.entity.Student;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.Optional;
public interface StudentRepository extends JpaRepository<Student, Long> {
Optional<Student> findByStudentNumber(String studentNumber);
}
|