-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclsDeleteClientScreen.h
73 lines (58 loc) · 1.99 KB
/
clsDeleteClientScreen.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
64
65
66
67
68
69
70
71
72
#pragma once
#include <iostream>
#include "clsScreen.h"
#include "clsPerson.h"
#include "clsBankClient.h"
#include "clsInputValidate.h"
class clsDeleteClientScreen :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 ShowDeleteClientScreen()
{
if (!CheckAccessRights(clsUser::enPermissions::pDeleteClient))
{
return;// this will exit the function and it will not continue
}
_DrawScreenHeader("\tDelete 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);
_PrintClient(Client1);
cout << "\nAre you sure you want to delete this client y/n? ";
char Answer = 'n';
cin >> Answer;
if (Answer == 'y' || Answer == 'Y')
{
if (Client1.Delete())
{
cout << "\nClient Deleted Successfully :-)\n";
_PrintClient(Client1);
}
else
{
cout << "\nError Client Was not Deleted\n";
}
}
}
};