source: src/main/java/mk/ukim/finki/eglas/repository/PollingStationRepository.java@ ac151d1

main
Last change on this file since ac151d1 was ac151d1, checked in by David <darsov2@…>, 11 days ago

initial

  • Property mode set to 100644
File size: 454 bytes
Line 
1package mk.ukim.finki.eglas.repository;
2
3import mk.ukim.finki.eglas.model.Address;
4import mk.ukim.finki.eglas.model.PollingStation;
5import org.springframework.data.jpa.repository.JpaRepository;
6
7import java.util.List;
8
9public interface PollingStationRepository extends JpaRepository<PollingStation, Long> {
10 List<PollingStation> findAllByAddress_Municipality_Id(Long municipalityId);
11 PollingStation findPollingStationByAddress(Address address);
12}
Note: See TracBrowser for help on using the repository browser.