source: src/main/java/mk/ukim/finki/eglas/services/CandidacyService.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: 464 bytes
Line 
1package mk.ukim.finki.eglas.services;
2
3import mk.ukim.finki.eglas.model.Candidacy;
4
5import java.util.List;
6
7public interface CandidacyService {
8 Candidacy findById(Long id);
9 List<Candidacy> findAll();
10 Candidacy update(Long id, String description, Long candidateId, Long partyId, Long candidatesElectionRealizationId, Long municipalityId);
11 void delete(Long id);
12 List<Candidacy> findAllByElectionsRealiztion(Long realizationId, Long citizenId);
13}
Note: See TracBrowser for help on using the repository browser.