Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public interface UserService {
  2.  
  3. List<User> getAll();
  4.  
  5. User getById(String id);
  6.  
  7. User getByUsername(String username);
  8.  
  9. User signUp(User user);
  10.  
  11. List<User> createAll(List<User> users);
  12.  
  13. List<User> updateAll(List<User> users);
  14.  
  15. boolean deleteById(String id);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement