Last change
on this file was 850b344, checked in by Tamara Simikj <tamara.simic12@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
344 bytes
|
Rev | Line | |
---|
[850b344] | 1 | package com.project.beautycenter.service;
|
---|
| 2 |
|
---|
| 3 | import com.project.beautycenter.model.Users;
|
---|
| 4 |
|
---|
| 5 | import java.util.List;
|
---|
| 6 |
|
---|
| 7 | public interface UsersService {
|
---|
| 8 | List<Users> findAll();
|
---|
| 9 |
|
---|
| 10 | Users findbyId(Integer id);
|
---|
| 11 |
|
---|
| 12 | Users create(String username, String password);
|
---|
| 13 |
|
---|
| 14 | Users create(Users user);
|
---|
| 15 |
|
---|
| 16 | Users login(String username, String password);
|
---|
| 17 |
|
---|
| 18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.