source:
src/main/java/com/project/beautycenter/service/UplataService.java
Last change on this file was 850b344, checked in by , 2 years ago | |
---|---|
|
|
File size: 212 bytes |
Rev | Line | |
---|---|---|
[850b344] | 1 | package com.project.beautycenter.service; |
2 | ||
3 | ||
4 | import com.project.beautycenter.model.Uplata; | |
5 | ||
6 | import java.util.List; | |
7 | ||
8 | public interface UplataService { | |
9 | List<Uplata> findAll(); | |
10 | ||
11 | Uplata findbyId(Integer id); | |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.