Skip to content

Instantly share code, notes, and snippets.

View dineshkumarDK47's full-sized avatar
🎯
Focusing

Dinesh Kumar S dineshkumarDK47

🎯
Focusing
  • Vellore
  • 20:56 (UTC -12:00)
View GitHub Profile
@Rahandi
Rahandi / ATM.java
Created October 19, 2017 17:48
ATM
public class ATM
{
private boolean userAuthenticated;
private int currentAccountNumber;
private Screen screen;
private Keypad keypad;
private CashDispenser cashDispenser;
private DepositSlot depositSlot;
private BankDatabase bankDatabase;