Changeset dad5bcd
- Timestamp:
- 02/16/23 14:03:51 (21 months ago)
- Branches:
- main
- Children:
- aced08c
- Parents:
- da44aef
- Location:
- Prototype Application/Paw5/src/main/java/finki/paw5/service/implementation
- Files:
-
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
Prototype Application/Paw5/src/main/java/finki/paw5/service/implementation/AuthServiceImplementation.java
rda44aef rdad5bcd 17 17 18 18 @Service 19 public class AuthServiceImpl implements AuthService {19 public class AuthServiceImplementation implements AuthService { 20 20 21 21 private final UserRepository userRepository; … … 23 23 private final EmployeeRepository employeeRepository; 24 24 25 public AuthServiceImpl (UserRepository userRepository, AdopterRepository adopterRepository, EmployeeRepository employeeRepository) {25 public AuthServiceImplementation(UserRepository userRepository, AdopterRepository adopterRepository, EmployeeRepository employeeRepository) { 26 26 this.userRepository = userRepository; 27 27 this.adopterRepository = adopterRepository; -
Prototype Application/Paw5/src/main/java/finki/paw5/service/implementation/OrganisationServiceImplementation.java
rda44aef rdad5bcd 8 8 import java.util.List; 9 9 @Service 10 public class OrganisationServiceImpl implements OrganisationService {10 public class OrganisationServiceImplementation implements OrganisationService { 11 11 private final OrganisationRepository organisationRepository; 12 12 13 public OrganisationServiceImpl (OrganisationRepository organisationRepository) {13 public OrganisationServiceImplementation(OrganisationRepository organisationRepository) { 14 14 this.organisationRepository = organisationRepository; 15 15 } -
Prototype Application/Paw5/src/main/java/finki/paw5/service/implementation/ShelterServiceImplementation.java
rda44aef rdad5bcd 9 9 10 10 @Service 11 public class ShelterServiceImp implements ShelterService {11 public class ShelterServiceImplementation implements ShelterService { 12 12 private final ShelterRepository shelterRepository; 13 13 14 public ShelterServiceImp (ShelterRepository shelterRepository) {14 public ShelterServiceImplementation(ShelterRepository shelterRepository) { 15 15 this.shelterRepository = shelterRepository; 16 16 }
Note:
See TracChangeset
for help on using the changeset viewer.