source: src/main/java/mk/ukim/finki/eglas/repository/MunicipalityRepository.java

main
Last change on this file was ac151d1, checked in by David <darsov2@…>, 3 months ago

initial

  • Property mode set to 100644
File size: 237 bytes
Line 
1package mk.ukim.finki.eglas.repository;
2
3import mk.ukim.finki.eglas.model.Municipality;
4import org.springframework.data.jpa.repository.JpaRepository;
5
6public interface MunicipalityRepository extends JpaRepository<Municipality, Long> {
7}
Note: See TracBrowser for help on using the repository browser.