This commit is contained in:
Ali Can Zeybek
2025-01-09 20:32:47 +03:00
parent 72514365eb
commit ef0043ada8
4 changed files with 106 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ public class ATM {
private int minimumAmount;
private int maximumAmount;
private int limitTimeForOperation;
private int totalFund;
private int maximum_withdrawar_pday_pacc;
private int maximum_withdrawar_ptrans;
/**
*
@@ -62,5 +65,30 @@ public class ATM {
public void setLimitTimeForOperation(int limitTimeForOperation) {
this.limitTimeForOperation = limitTimeForOperation;
}
public int getMaximum_withdrawar_pday_pacc() {
return maximum_withdrawar_pday_pacc;
}
public void setMaximum_withdrawar_pday_pacc(int maximum_withdrawar_pday_pacc) {
this.maximum_withdrawar_pday_pacc = maximum_withdrawar_pday_pacc;
}
public int getMaximum_withdrawar_ptrans() {
return maximum_withdrawar_ptrans;
}
public void setMaximum_withdrawar_ptrans(int maximum_withdrawar_ptrans) {
this.maximum_withdrawar_ptrans = maximum_withdrawar_ptrans;
}
public int getTotalFund() {
return totalFund;
}
public void setTotalFund(int totalFund) {
this.totalFund = totalFund;
}
}