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