-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmOptions.cs
188 lines (157 loc) · 5.45 KB
/
frmOptions.cs
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace ATMApp
{
public partial class frmOptions : Form
{
public frmOptions()
{
InitializeComponent();
}
string Url = String.Empty;
private void frmOptions_Load(object sender, EventArgs e)
{
Url = string.Format("http://localhost:50316/PayMobileBill.aspx?CustomerId={0}&AtmPIN={1}", ATMApp.frmCustomLogin.ClassValue.CustomerId,ATMApp.frmCustomLogin.ClassValue.AtmPin);
}
private void imgCashReciept_Click(object sender, EventArgs e)
{
// 1.Please seelct your account screen
// 2.New screen to show the mini statement. Need Proceed button
// 3.Transaction completed successfully screen
frmOpt.PathIndicator = Convert.ToString(EnumValueData.MiniReport);
CashReciept();
}
private void CashReciept()
{
this.Hide();
frmSelectAccount updatepin = new frmSelectAccount();
updatepin.ShowDialog();
this.Close();
}
private void imgPinChange_Click(object sender, EventArgs e)
{
// 1. Change pin by selecting bank
// 2. Going back to Select options screen
CallUpdatePIN();
}
private void CallUpdatePIN()
{
this.Hide();
frmUpdatePIN updatepin = new frmUpdatePIN();
updatepin.ShowDialog();
this.Close();
}
private void imgCashWithdrawal_Click(object sender, EventArgs e)
{
frmOpt.OptionIndicator = "withdrawal";
// 1.Please select your Account Screen
// 2.Please enter the amount in multiples of 500
// 3. Cash Reciept : Report
CallCashWithDrawal();
}
private void imgBalanceEnquiry_Click(object sender, EventArgs e)
{
frmOpt.PathIndicator = Convert.ToString(EnumValueData.FullReport);
SelectAccount();
// 1. Please select Acoount screen
// 2. Showing Balance Details
// 3. Would you like another transaction screen; exit
}
private void imgMoreServices_Click(object sender, EventArgs e)
{
frmOpt.OptionIndicator = "Transfer";
SelectBankFund();
}
private void imgBillPayment_Click(object sender, EventArgs e)
{
ProcessStartInfo startInfo = new ProcessStartInfo(Url);
Process.Start(startInfo);
}
private void lblMiniStatement_Click(object sender, EventArgs e)
{
frmOpt.PathIndicator = Convert.ToString(EnumValueData.MiniReport);
CashReciept();
}
private void lblBillPayment_Click(object sender, EventArgs e)
{
ProcessStartInfo startInfo = new ProcessStartInfo(Url);
Process.Start(startInfo);
}
private void lblMoreServices_Click(object sender, EventArgs e)
{
frmOpt.OptionIndicator = "Transfer";
SelectBankFund();
}
private void lblBalanceEnquiry_Click(object sender, EventArgs e)
{
frmOpt.PathIndicator = Convert.ToString(EnumValueData.FullReport);
SelectAccount();
// 1. Please select Account screen
// 2. Showing Balance Details : Report
// 3. Would you like another transaction screen; exit
}
public enum EnumValueData
{
FullReport,
MiniReport
}
private void lblCashWithdrawal_Click(object sender, EventArgs e)
{
frmOpt.OptionIndicator = "withdrawal";
// 1.Please select your Account Screen
// 2.Please enter the amount in multiples of 500
// 3. Cash Reciept : Report
CallCashWithDrawal();
}
private void CallCashWithDrawal()
{
this.Hide();
frmTransactionPassword updatepin = new frmTransactionPassword();
updatepin.ShowDialog();
this.Close();
}
private void SelectAccount()
{
this.Hide();
frmSelectAccount updatepin = new frmSelectAccount();
updatepin.ShowDialog();
this.Close();
}
private void SelectBankFund()
{
this.Hide();
frmTransactionPassword updatepin = new frmTransactionPassword();
updatepin.ShowDialog();
this.Close();
}
private void lblPinChange_Click(object sender, EventArgs e)
{
// 1. Change pin by selecting bank
// 2. Going back to Select options screen
CallUpdatePIN();
}
public static class frmOpt
{
public static string PathIndicator;
public static string OptionIndicator;
}
private void frmOptions_FormClosing(object sender, FormClosingEventArgs e)
{
e.Cancel = true;
}
private void lblProceed_Click(object sender, EventArgs e)
{
this.Hide();
frmCompleted updatepin = new frmCompleted();
updatepin.ShowDialog();
this.Close();
}
}
}