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