17 lines
338 B
Java
17 lines
338 B
Java
public class ReceiptPrinter {
|
|
|
|
public ReceiptPrinter() {
|
|
// TODO - implement ReceiptPrinter.ReceiptPrinter
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param receipt
|
|
*/
|
|
public void printReceipt(Receipt receipt) {
|
|
// TODO - implement ReceiptPrinter.printReceipt
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
} |