-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathClient.java
67 lines (57 loc) · 2.34 KB
/
Client.java
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
package BankManagementSystem;
public class Client extends User {
private final String accountNumber; // (unique)
private final String username;
private final String password;
private String phoneNumber;
private final String accountState; // (Active or Closed)
private final String typeOfAccount; // (Savings or Current)
private double balance;
public Client(String ID, String firstName, String lastName, String accountNumber, String username, String password, String phoneNumber, String accountState, String typeOfAccount, double balance) {
super(ID, firstName, lastName);
this.accountNumber = accountNumber;
this.username = username;
this.password = password;
this.phoneNumber = phoneNumber;
this.accountState = accountState;
this.typeOfAccount = typeOfAccount;
this.balance = balance;
}
public void editPersonalInformation(String newPhoneNumber) {
// Implement logic to edit personal information
this.phoneNumber = newPhoneNumber;
System.out.println("Personal information updated successfully.");
}
public String getID() {
return ID;
}
public void displayAccountDetails() {
System.out.println("Account Number: " + accountNumber);
System.out.println("Account Type: " + typeOfAccount);
System.out.println("Balance: $" + balance);
}
public void transferMoney(double amount, Account recipientAccount) {
// Implement logic for money transfer between accounts
// This may involve updating the balances of both the sender and recipient
}
public void showTransactionHistory() {
// Implement transaction history display logic
}
public void deposit(double amount) {
if (amount > 0) {
balance += amount;
System.out.println("Deposit of $" + amount + " successful.");
} else {
System.out.println("Invalid deposit amount.");
}
}
public void withdraw(double amount) {
if (amount > 0 && balance >= amount) {
balance -= amount;
System.out.println("Withdrawal of $" + amount + " successful.");
} else {
System.out.println("Invalid withdrawal amount or insufficient funds.");
}
}
// You can add other methods as needed for the Client class
}