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