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