first commit

This commit is contained in:
Ali Can Zeybek
2025-01-09 20:02:51 +03:00
commit 72514365eb
55 changed files with 1285 additions and 0 deletions

19
Code/OperatorPanel.java Normal file
View File

@@ -0,0 +1,19 @@
public class OperatorPanel {
private ATM atm;
/**
*
* @param atm
*/
public OperatorPanel(ATM atm) {
// TODO - implement OperatorPanel.OperatorPanel
throw new UnsupportedOperationException();
}
public Money getInitialCash() {
// TODO - implement OperatorPanel.getInitialCash
throw new UnsupportedOperationException();
}
}