UserService.java 267 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package org.legrog.web.user; import org.legrog.entities.Account; import java.util.List; public interface UserService { void addUser(Account account); List<Account> getAllUsers(); Account findUserById(int id); void updateUser(Account account); }