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