summaryrefslogtreecommitdiff
path: root/src/main/java/com/mavlushechka/studentdatabase/repository/FamilyRepository.java
blob: 5dd05c679afafdbcd70a2a5e005a0b1e2f2a53ff (plain)
1
2
3
4
5
6
7
8
9
package com.mavlushechka.studentdatabase.repository;

import com.mavlushechka.studentdatabase.domain.Family;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface FamilyRepository extends MongoRepository<Family, String> {
}