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