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

35
Code/Inquiry.java Normal file
View File

@@ -0,0 +1,35 @@
public class Inquiry extends Transaction {
private int from;
public int getFrom() {
return from;
}
public void setFrom(int from) {
this.from = from;
}
/**
*
* @param atm
* @param session
* @param card
* @param pin
*/
public Inquiry(ATM atm, Session session, Card card, int pin) {
// TODO - implement Inquiry.Inquiry
throw new UnsupportedOperationException();
}
public Message getSpecificsFromCustomer() {
// TODO - implement Inquiry.getSpecificsFromCustomer
throw new UnsupportedOperationException();
}
public Receipt completeTransaction() {
// TODO - implement Inquiry.completeTransaction
throw new UnsupportedOperationException();
}
}