-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclsFindClientScreen.h
64 lines (51 loc) · 1.71 KB
/
clsFindClientScreen.h
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
#pragma once
#include <iostream>
#include "clsScreen.h"
#include "clsPerson.h"
#include "clsBankClient.h"
#include "clsInputValidate.h"
class clsFindClientScreen :protected clsScreen
{
private:
static void _PrintClient(clsBankClient Client)
{
cout << "\nClient Card:";
cout << "\n___________________";
cout << "\nFirstName : " << Client.FirstName;
cout << "\nLastName : " << Client.LastName;
cout << "\nFull Name : " << Client.FullName();
cout << "\nEmail : " << Client.Email;
cout << "\nPhone : " << Client.Phone;
cout << "\nAcc. Number : " << Client.AccountNumber();
cout << "\nPassword : " << Client.PinCode;
cout << "\nBalance : " << Client.AccountBalance;
cout << "\n___________________\n";
}
public:
static void ShowFindClientScreen()
{
if (!CheckAccessRights(clsUser::enPermissions::pFindClient))
{
return;// this will exit the function and it will not continue
}
_DrawScreenHeader("\tFind Client Screen");
string AccountNumber;
cout << "\nPlease Enter Account Number: ";
AccountNumber = clsInputValidate::ReadString();
while (!clsBankClient::IsClientExist(AccountNumber))
{
cout << "\nAccount number is not found, choose another one: ";
AccountNumber = clsInputValidate::ReadString();
}
clsBankClient Client1 = clsBankClient::Find(AccountNumber);
if (!Client1.IsEmpty())
{
cout << "\nClient Found :-)\n";
}
else
{
cout << "\nClient Was not Found :-(\n";
}
_PrintClient(Client1);
}
};