source: src/main/java/mk/ukim/finki/eglas/services/ElectionRealizationService.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: 809 bytes
Line 
1package mk.ukim.finki.eglas.services;
2
3import jakarta.persistence.ManyToOne;
4import mk.ukim.finki.eglas.model.Election;
5import mk.ukim.finki.eglas.model.ElectionRealization;
6import mk.ukim.finki.eglas.model.ElectoralUnit;
7import org.springframework.web.bind.annotation.RequestParam;
8
9import java.time.LocalDate;
10import java.util.List;
11
12public interface ElectionRealizationService {
13 List<ElectionRealization> findAll();
14 ElectionRealization findById(Long id);
15 ElectionRealization update(Long id,
16 LocalDate date,
17 String name,
18 Long electionId,
19 String candidacyElections,
20 String candidateListElections);
21 ElectionRealization delete(Long id);
22}
Note: See TracBrowser for help on using the repository browser.