blob: 1b09e5fab85abd3d2b87814481bcd8a6cc218568 (
plain)
1
2
3
4
5
6
7
8
9
|
package com.mavlushechka.studentdatabase.repository;
import com.mavlushechka.studentdatabase.domain.Student;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface StudentRepository extends MongoRepository<Student, String> {
}
|