Ignore:
Timestamp:
10/19/21 16:40:43 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
6a80231
Parents:
eed0bf8
Message:

location-form

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner/src/main/java/finki/diplomska/tripplanner/service/LocationService.java

    reed0bf8 r188ee53  
    1010public interface LocationService {
    1111    List<Location> findLocationsFromCity(String locName, String companion, List<String> categories);
     12    List<Location> findLocationsFromCountry (String locName, String companion,String region, List<String> categories );
    1213    List<Location> findAll();
    1314    Location getById(Long id);
    14     List<Location> findLocationsFromCountry (String locName, String companion,String region, List<String> categories );
    1515    List<Location> scheduleLocations(String locName, String companion,String region, List<String> categories, int numberOfDays);
    1616    Optional<Location> findById(Long id);
    17 
    18     List<Location> findLocations(Long locationId, Long companionId, Long lengthOfStay, String categoryIds);
     17    List<Location> findLocationsFromCityForm(Long cityId, Long companionId, Long lengthOfStay, String categoryIds);
     18    List<Location> findLocationsFromRegionForm(Long regionId, Long companionId, Long lengthOfStay, String categoryIds);
    1919}
Note: See TracChangeset for help on using the changeset viewer.