Changes between Version 8 and Version 9 of WikiStart/Development


Ignore:
Timestamp:
04/03/25 12:08:07 (29 hours ago)
Author:
203206
Comment:

mk2

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Development

    v8 v9  
    4747    private TransactionRepository transactionRepository;
    4848
    49 
     49    @Transactional
    5050    public Account findAccountByUsername(String username) {
    5151        return accountRepository.findByUsername(username).orElseThrow(() -> new RuntimeException("Account not found"));
    5252    }
    5353
     54    @Transactional
    5455    public Account registerAccount(String username,String email, String password) {
    5556        if (accountRepository.findByUsername(username).isPresent()) {
     
    6566    }
    6667
    67 
     68    @Transactional
    6869    public void deposit(Account account, BigDecimal amount) {
    6970        account.setBalance(account.getBalance().add(amount));
     
    8081    }
    8182
     83    @Transactional
    8284    public void withdraw(Account account, BigDecimal amount) {
    8385        if (account.getBalance().compareTo(amount) < 0) {
     
    9799    }
    98100
     101
     102    @Transactional
    99103    public List<Transaction> getTransactionHistory(Account account) {
    100104        return transactionRepository.findByAccountId(account.getId());
    101105    }
    102106
     107    @Transactional
    103108    @Override
    104109    public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
     
    121126    }
    122127
    123 
     128 
     129    @Transactional
    124130    public void transferAmount(Account fromAccount, String toUsername, BigDecimal amount, String currency) {
    125131