-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccount.java
More file actions
83 lines (71 loc) · 1.63 KB
/
Account.java
File metadata and controls
83 lines (71 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package ATM_Network_System;
/**
* An Account class that stores account details
*
* @author Arvind Bhamidipati
* @version 1.0
*/
public class Account {
private int accountNumber;
private Card cashCard;
private String accountPassword;
private double accountBalance;
/**
* Account Instance
* @param accountNumber
* @param accountPassword
* @param cashCard
*/
public Account(int accountNumber, String accountPassword, Card cashCard) {
this.cashCard = cashCard;
this.accountPassword = accountPassword;
this.accountNumber = accountNumber;
accountBalance = 0;
}
/**
* Account Method to create object.
* @param accountNumber
* @param accountPassword
* @param cashCard
* @param presetAccountBalance
*/
public Account(int accountNumber, String accountPassword, Card cashCard, double presetAccountBalance) {
this(accountNumber, accountPassword,cashCard);
this.accountBalance = presetAccountBalance;
}
/**
* Withdraw money from account.
* @param amountToWithdraw
*/
public void withdraw(double amountToWithdraw) {
this.accountBalance = accountBalance - amountToWithdraw;
}
/**
* Get current balance in account.
* @return accountBalance
*/
public double returnCurrentBalance() {
return accountBalance;
}
/**
* Get Account Number.
* @return accountNumber
*/
public int getAccountNumber() {
return accountNumber;
}
/**
* Get Cash Card number
* @return caschCard
*/
public Card getCashCard() {
return cashCard;
}
/**
* Get Account Password for respective account.
* @return accountPassword
*/
public String getAccountPassword() {
return accountPassword;
}
}