source: src/main/java/mk/ukim/finki/eglas/repository/PartyRepository.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: 216 bytes
Line 
1package mk.ukim.finki.eglas.repository;
2
3import mk.ukim.finki.eglas.model.Party;
4import org.springframework.data.jpa.repository.JpaRepository;
5
6public interface PartyRepository extends JpaRepository<Party, Long> {
7}
Note: See TracBrowser for help on using the repository browser.