source: src/main/java/mk/ukim/finki/eglas/services/CandidacyVoteService.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: 426 bytes
Line 
1package mk.ukim.finki.eglas.services;
2
3import mk.ukim.finki.eglas.model.CandidacyVote;
4
5import java.util.List;
6import java.util.UUID;
7
8public interface CandidacyVoteService {
9 List<CandidacyVote> findAll();
10 CandidacyVote findById(Long id);
11 CandidacyVote update(Long voteId, Long candidacyId);
12 CandidacyVote delete(Long id);
13 void voteForCandidate(Long citizenId, Long realizationId, UUID voteId, Long id);
14}
Note: See TracBrowser for help on using the repository browser.