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

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

@Repository
public interface JobRepository extends MongoRepository<Job, String> {
}