1 package org
.cvut
.skischool
.beans
;
4 import javax
.ejb
.Local
;
5 import org
.cvut
.skischool
.model
.Account
;
12 public interface AccountManagementLocal
{
14 void createAccount(Account account
);
16 void deleteAccount(Account account
);
18 void updateAccount(Account account
);
20 Account
getAccount(long id
);
22 Account
getAccount(String username
);
24 List
<Account
> getAllAccounts();