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