Uses of Class
com.dada.banking_project.models.Accounts.Account
Package
Description
-
Uses of Account in com.dada.banking_project.controllers.impl
Modifier and TypeMethodDescriptionAdminController.addAccount
(AccountDTO accountDTO) This method handles the creation of a new account.AdminController.updateAccountBalance
(Integer id, BigDecimal balance) This method handles the updating of the balance for a specific account.Modifier and TypeMethodDescriptionAccountHolderController.checkBalanceAccounts
(Integer id) Retrieves a list of all Account entities associated with a particular AccountHolder.AdminController.findAllAccount()
This method handles the retrieval of all accounts. -
Uses of Account in com.dada.banking_project.models
ModifierConstructorDescriptionTransaction
(BigDecimal amount, LocalDateTime date, Account sender, Account receiver) -
Uses of Account in com.dada.banking_project.models.Accounts
Modifier and TypeClassDescriptionclass
This class represents a checking account, a type of bank account that typically allows for frequent deposits and withdrawals.class
class
SavingAccount is a subclass of the Account class that represents a savings account.class
-
Uses of Account in com.dada.banking_project.repositories
Modifier and TypeMethodDescriptionAccountRepository.findByAccountHolder_Id
(Integer accountHolderId) Finds all accounts associated with a given account holder ID. -
Uses of Account in com.dada.banking_project.services.impl
Modifier and TypeMethodDescriptionAdminService.addAccount
(AccountDTO accountDTO) AdminService.updateAccountBalance
(Integer accountId, BigDecimal newBalance) Modifier and TypeMethodDescriptionAccountHolderService.checkBalanceAccounts
(Integer accountHolderId) AdminService.findAllAccounts()