source: Prototype Application/Paw5/src/main/java/finki/paw5/service/UserService.java@ 996b8ba

main
Last change on this file since 996b8ba was 996b8ba, checked in by trajchevaM <118018439+trajchevaM@…>, 17 months ago

commit on new and updated functionalities

  • Property mode set to 100644
File size: 234 bytes
Line 
1package finki.paw5.service;
2
3import finki.paw5.model.entities.User;
4
5import java.util.Optional;
6
7public interface UserService {
8 User register(String password, String repeatPassword, String name, String email, String telephone);
9
10}
Note: See TracBrowser for help on using the repository browser.