Skip to content

Instantly share code, notes, and snippets.

@Mishco
Created November 25, 2022 12:09
Show Gist options
  • Select an option

  • Save Mishco/0a0a88bdb2b09c54535d51643882fa69 to your computer and use it in GitHub Desktop.

Select an option

Save Mishco/0a0a88bdb2b09c54535d51643882fa69 to your computer and use it in GitHub Desktop.
public class CurrentAccount extends Account implements Deposable, Withdrawable {
@Override
protected void deposit(BigDecimal amount) {
// Deposit into CurrentAccount
}
@Override
protected void withdraw(BigDecimal amount) {
// Withdraw from CurrentAccount
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment