source: src/main/java/mk/ukim/finki/eglas/services/ObjectionService.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: 451 bytes
Line 
1package mk.ukim.finki.eglas.services;
2
3import mk.ukim.finki.eglas.model.Objection;
4import mk.ukim.finki.eglas.model.UserProfile;
5
6import java.util.List;
7
8public interface ObjectionService {
9 List<Objection> findAll();
10 Objection findById(Long id);
11 Objection update(Long id, Long electionRealizationId, Long pollingStationId, String description);
12 Objection delete(Long id);
13 Objection accept(Long id);
14 Objection reject(Long id);
15}
Note: See TracBrowser for help on using the repository browser.