19 lines
345 B
Java
19 lines
345 B
Java
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();
|
|
}
|
|
|
|
} |