public interface BankAccountService
Modifier and Type | Method and Description |
---|---|
void |
delete(java.lang.Long id)
Delete the "id" bankAccount.
|
java.util.List<BankAccountDTO> |
findAll()
Get all the bankAccounts.
|
BankAccountDTO |
findOne(java.lang.Long id)
Get the "id" bankAccount.
|
BankAccountDTO |
save(BankAccountDTO bankAccountDTO)
Save a bankAccount.
|
BankAccountDTO save(BankAccountDTO bankAccountDTO)
bankAccountDTO
- the entity to savejava.util.List<BankAccountDTO> findAll()
BankAccountDTO findOne(java.lang.Long id)
id
- the id of the entityvoid delete(java.lang.Long id)
id
- the id of the entityCopyright © 2017 Osgiliath. All rights reserved.