Skip to content

Commit e391e36

Browse files
authored
Merge branch 'code-differently:main' into Lesson_15
2 parents 4a93ee2 + d46c282 commit e391e36

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lesson_17/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Your task for this assignment is add enhancements to an ATM simulator. The [Bank
2929
* We want the `BankAtm` class to support the concept of a `BusinessCheckingAccount`. A business account requires that at least one of the owning accounts is a business.
3030
* In addition to supporting checks and cash, we also want to support the concept of another monetary instrument called a `MoneyOrder`. Unlike a `Check`, a `MoneyOrder` withdraws funds from a source account immediately on creation for the purposes of this simulation..
3131
* For traceability, all of the transactions in the `BankAtm` class should logged. Create an `AuditLog` class that keeps a record of all debits and credits to any account and integrate it with the `BankAtm` class.
32-
* For the `depositFunds` method that accepts a cash amount, we'd like the ability to deposit funds in a variety of currencies. Add a parameter that accepts a currency type and a new object that encapsulates the currency converter logic for converting a cash amount to the account currency type.
32+
* ~~For the `depositFunds` method that accepts a cash amount, we'd like the ability to deposit funds in a variety of currencies. Add a parameter that accepts a currency type and a new object that encapsulates the currency converter logic for converting a cash amount to the account currency type.~~
3333

3434
### Technical Requirements
3535

lesson_17/bank/bank_app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
application
44
eclipse
55
jacoco
6+
id("io.freefair.lombok") version "8.10.2"
67
id("com.diffplug.spotless") version "6.25.0"
78
id("org.springframework.boot") version "3.2.2"
89
id("com.adarshr.test-logger") version "4.0.0"

0 commit comments

Comments
 (0)