main
Last change
on this file was f4b4afa, checked in by Nikola Todoroski <nikola.todoroski@…>, 6 months ago |
Pushed whole project, original project location on github:https://github.com/hehxd/Tech-Harbor
|
-
Property mode
set to
100644
|
File size:
469 bytes
|
Rev | Line | |
---|
[f4b4afa] | 1 | package tech.techharbor.Service;
|
---|
| 2 |
|
---|
| 3 |
|
---|
| 4 | import tech.techharbor.Model.UserTableModel;
|
---|
| 5 |
|
---|
| 6 | public interface UserService {
|
---|
| 7 |
|
---|
| 8 | UserTableModel findById(Integer id);
|
---|
| 9 |
|
---|
| 10 | UserTableModel create(String name, String username, String email, String password, String phoneNumber);
|
---|
| 11 |
|
---|
| 12 | UserTableModel update(Integer id, String name, String username, String email, String password, String phoneNumber);
|
---|
| 13 |
|
---|
| 14 | UserTableModel findByUsername(String username);
|
---|
| 15 |
|
---|
| 16 | void delete(Integer id);
|
---|
| 17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.