source: src/main/java/mk/ukim/finki/eglas/services/VoteService.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: 549 bytes
RevLine 
[ac151d1]1package mk.ukim.finki.eglas.services;
2
3import jakarta.transaction.Transactional;
4import mk.ukim.finki.eglas.model.Candidacy;
5import mk.ukim.finki.eglas.model.CandidacyVote;
6import mk.ukim.finki.eglas.model.Vote;
7import mk.ukim.finki.eglas.model.VoteIdentificationCode;
8
9import java.util.UUID;
10
11public interface VoteService {
12 Vote vote(UUID voteIdentificationCodeId, Long pollingStationId, Long realizationId);
13
14 @Transactional
15 CandidacyVote voteForCandidate(Long citizenId, UUID voteIdentificationCodeId, Long realizationId, Long id);
16}
Note: See TracBrowser for help on using the repository browser.