mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-05-12 02:21:38 +00:00
8 lines
172 B
Java
8 lines
172 B
Java
package bigbank;
|
|
|
|
public interface BankDao {
|
|
public Account readAccount(Long id);
|
|
public void createOrUpdateAccount(Account account);
|
|
public Account[] findAccounts();
|
|
}
|