source:
src/main/java/com/example/service/PhotographerService.java@
a51a591
Last change on this file since a51a591 was a51a591, checked in by , 14 months ago | |
---|---|
|
|
File size: 211 bytes |
Line | |
---|---|
1 | package com.example.service; |
2 | |
3 | import com.example.model.Photographer; |
4 | |
5 | import java.util.List; |
6 | |
7 | public interface PhotographerService { |
8 | List<Photographer> findAll(); |
9 | Photographer findByName(String name); |
10 | } |
Note:
See TracBrowser
for help on using the repository browser.