mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-04-04 08:23:26 +00:00
10 lines
174 B
Java
10 lines
174 B
Java
package bigbank;
|
|
|
|
public interface BankDao {
|
|
public Account readAccount(Long id);
|
|
|
|
public void createOrUpdateAccount(Account account);
|
|
|
|
public Account[] findAccounts();
|
|
}
|