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