source: src/main/java/com/example/service/LocationService.java

Last change on this file was a51a591, checked in by colovik <j.colovik@…>, 14 months ago

final

  • Property mode set to 100644
File size: 201 bytes
RevLine 
[a51a591]1package com.example.service;
2
3import com.example.model.Location;
4
5import java.util.List;
6
7public interface LocationService {
8 List<Location> findAll();
9 Location findByAddress(String address);
10}
Note: See TracBrowser for help on using the repository browser.