-
Notifications
You must be signed in to change notification settings - Fork 0
/
bankAccount.cpp
78 lines (66 loc) · 1.61 KB
/
bankAccount.cpp
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
#include <iostream>
#include "bankAccount_.h"
#include "user_.h"
BankAccount::BankAccount() {};
/*
* Constructor that creates a BankAccount object based on the given User object.
*/
BankAccount::BankAccount(const User &user) : user(&user) {
this->name = user.getName();
this->id = user.getId();
this->balance = user.getBalance();
}
/*
* Displays the bank account's data, including the associated user's information.
* The getUser() function is called to retrieve the User object's pointer.
*/
void BankAccount::showData() const {
cout << "branch is: " << this->branch << endl;
cout << "Your name is: " << getUser()->getName() << endl;
cout << "And your id is: " << getUser()->getId() << endl;
}
/*
* Returns the ID of the bank account.
*/
int BankAccount::getID() {
return id;
}
/*
* Returns the name of the bank account owner.
*/
string BankAccount::getName() {
return name;
}
/*
* Displays the bank account's data: name, ID, and balance.
*/
void BankAccount::disp() const {
cout << name << " " << id << " " << balance << endl;
}
/*
* Returns a pointer to the associated User object.
*/
const User* BankAccount::getUser() const {
return user;
}
/*
* Returns the balance of the bank account.
*/
double BankAccount::getBalance() {
return balance;
}
/*
* Updates the balance of the bank account by adding the given amount.
* Parameters:
* - amount: The amount to be added to the balance.
*/
void BankAccount::updateBalanceAmount(double amount) {
balance += amount;
}
//vector<BankAccount> BankAccount::createBankAccountsFromList(vector<User>&users)
//{
// for (auto user : users) {
//
// }
// return vector<BankAccount>();
//}