source: src/main/java/com/project/beautycenter/service/UplataService.java@ 850b344

Last change on this file since 850b344 was 850b344, checked in by Tamara Simikj <tamara.simic12@…>, 2 years ago

Initial commit

  • Property mode set to 100644
File size: 212 bytes
Line 
1package com.project.beautycenter.service;
2
3
4import com.project.beautycenter.model.Uplata;
5
6import java.util.List;
7
8public interface UplataService {
9 List<Uplata> findAll();
10
11 Uplata findbyId(Integer id);
12}
Note: See TracBrowser for help on using the repository browser.