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