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