sync
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user