source: Prototype Application/Paw5/src/main/java/finki/paw5/service/implementation/ShelterServiceImplementation.java@ dad5bcd

main
Last change on this file since dad5bcd was dad5bcd, checked in by trajchevaM <118018439+trajchevaM@…>, 17 months ago

Renamed services implementations

  • Property mode set to 100644
File size: 630 bytes
Line 
1package finki.paw5.service.implementation;
2
3import finki.paw5.model.entities.Shelter;
4import finki.paw5.repository.ShelterRepository;
5import finki.paw5.service.ShelterService;
6import org.springframework.stereotype.Service;
7
8import java.util.List;
9
10@Service
11public class ShelterServiceImplementation implements ShelterService {
12 private final ShelterRepository shelterRepository;
13
14 public ShelterServiceImplementation(ShelterRepository shelterRepository) {
15 this.shelterRepository = shelterRepository;
16 }
17
18
19 @Override
20 public List<Shelter> listShelters() {
21 return shelterRepository.findAll();
22 }
23}
Note: See TracBrowser for help on using the repository browser.