-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBankSystem.cs
More file actions
359 lines (306 loc) · 9.45 KB
/
BankSystem.cs
File metadata and controls
359 lines (306 loc) · 9.45 KB
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
namespace BankingSystem;
enum MenuOption
{
AddAccount,
Withdraw,
Deposit,
Transfer,
Print,
PrintTransHistory,
Quit
}
class BankSystem
{
private static Account FindAccount(Bank bank)
{
String name;
Account targetAccount;
Console.WriteLine("Please enter the account name to perform the action: ");
name = Console.ReadLine()!;
targetAccount = bank.GetAccount(name);
if(targetAccount != null)
{
Console.WriteLine("Account found!");
return targetAccount;
}
else
{
throw new InvalidOperationException("Account name: " + name + " does not match any record");
}
}
public static void AddAccount(Bank bank)
{
String _name = "";
decimal _balance = 0;
bool loop = true;
do
{
try
{
Console.WriteLine("Please enter a name for the account: ");
_name = Console.ReadLine()!;
if(_name == "" || _name == null)
{
throw new InvalidOperationException("Please enter a valid name!");
}
Console.WriteLine("Please enter a starting balance: ");
_balance = Convert.ToDecimal(Console.ReadLine());
if(_balance <= 0)
{
throw new InvalidOperationException("Please enter a valid balance!");
}
else
{
loop = false;
}
}
catch(InvalidOperationException e)
{
Console.WriteLine(e.Message);
}
catch(FormatException)
{
Console.WriteLine("Please enter a valid balance");
}
}while(loop);
Account newAccount = new Account(_name, _balance);
bank.AddAccount(newAccount);
}
public static void DoTransfer(Bank bank)
{
Account? fromAccount = null;
Account? toAccount = null;
TransferTransaction T_Transaction;
Decimal amount;
try
{
Console.Write("From: ");
fromAccount = FindAccount(bank);
Console.Write("To: ");
toAccount = FindAccount(bank);
if(fromAccount == toAccount)
{
fromAccount = null;
toAccount = null;
throw new InvalidOperationException("You cannot transfer money to the same account!");
}
}
catch(InvalidOperationException e)
{
Console.WriteLine(e.Message);
}
if(fromAccount != null && toAccount != null)
{
try
{
Console.WriteLine("Please enter the amount you want to transfer: ");
amount = Convert.ToDecimal(Console.ReadLine());
}
catch(FormatException)
{
Console.WriteLine("Please enter an correct amount");
amount = -999;
}
T_Transaction = new TransferTransaction(fromAccount, toAccount, amount);
try
{
bank.ExecuteTransaction(T_Transaction);
}
catch(InvalidOperationException e)
{
Console.WriteLine(e.Message);
}
T_Transaction.Print();
}
}
public static void DoDeposit(Bank bank)
{
Account? targetAccount = null;
DepositTransaction D_Transaction;
Decimal amount;
try
{
targetAccount = FindAccount(bank);
}
catch(InvalidOperationException e)
{
Console.WriteLine(e.Message);
}
if(targetAccount != null)
{
try
{
Console.WriteLine("Please enter the amount you want to deposit: ");
amount = Convert.ToDecimal(Console.ReadLine());
}
catch(FormatException)
{
Console.WriteLine("Please enter a correct amount");
amount = -999;
}
D_Transaction = new DepositTransaction(targetAccount, amount);
try
{
bank.ExecuteTransaction(D_Transaction);
}
catch (InvalidOperationException e)
{
Console.WriteLine(e.Message);
}
D_Transaction.Print();
}
}
public static void DoWithdraw(Bank bank)
{
Account? targetAccount = null;
WithdrawTransaction W_Transaction;
Decimal amount;
try
{
targetAccount = FindAccount(bank);
}
catch(InvalidOperationException e)
{
Console.WriteLine(e.Message);
}
if(targetAccount != null)
{
try
{
Console.WriteLine("Please enter the amount you want to withdraw: ");
amount = Convert.ToDecimal(Console.ReadLine());
}
catch(FormatException)
{
Console.WriteLine("Please enter an correct amount");
amount = -999;
}
W_Transaction = new WithdrawTransaction(targetAccount, amount);
try
{
bank.ExecuteTransaction(W_Transaction);
}
catch (InvalidOperationException e)
{
Console.WriteLine(e.Message);
}
W_Transaction.Print();
}
}
public static void DoPrint(Bank bank)
{
Account? targetAccount = null;
try
{
targetAccount = FindAccount(bank);
targetAccount.Print();
}
catch(InvalidOperationException e)
{
Console.WriteLine(e.Message);
}
}
public static void DoRollback(Bank bank)
{
bank.PrintTranscationHistory();
int input = 0;
int index = -1;
try
{
if(bank.Transactions.Count() != 0)
{
Console.WriteLine("Do you want to roll back a transaction? (0. No/ 1. Yes): ");
input = Convert.ToInt32(Console.ReadLine());
if(input == 1)
{
Console.WriteLine("Please select index of the transaction you want to rollback : (integer)");
index = Convert.ToInt32(Console.ReadLine());
if(index <= 0 || index > bank.Transactions.Count())
{
throw new InvalidOperationException("Index out of range");
}
index -= 1;
bank.RollbackTransaction(bank.Transactions[index]);
}
}
else
{
Console.WriteLine("There is no transaction history");
}
}
catch(FormatException)
{
Console.WriteLine("Invalid input");
}
catch(InvalidOperationException e)
{
Console.WriteLine(e.Message);
Console.WriteLine("Rollback failed");
}
}
public static MenuOption ReadUserOption()
{
int input = -999;
do
{
try
{
Console.WriteLine("==Select an action==");
Console.WriteLine("1. Add new account");
Console.WriteLine("2. Withdraw");
Console.WriteLine("3. Deposit");
Console.WriteLine("4. Transfer");
Console.WriteLine("5. Print");
Console.WriteLine("6. Print Transcation History");
Console.WriteLine("7. Quit");
string? U_input = Console.ReadLine();
input = Convert.ToInt32(U_input);
}
catch(FormatException)
{
Console.WriteLine("Please enter a valid code");
}
if (input < 1 || input > Enum.GetValues(typeof(MenuOption)).Length)
{
Console.WriteLine("Please enter an valid integer");
Console.WriteLine();
}
}while(input < 1 || input > Enum.GetValues(typeof(MenuOption)).Length);
input -= 1;
return (MenuOption)input;
}
static void Main(string[] args)
{
MenuOption option;
Bank bank = new Bank();
do
{
option = ReadUserOption();
Console.WriteLine("You have selected: " + option);
switch(option)
{
case MenuOption.AddAccount:
AddAccount(bank);
break;
case MenuOption.Withdraw:
DoWithdraw(bank);
break;
case MenuOption.Deposit:
DoDeposit(bank);
break;
case MenuOption.Transfer:
DoTransfer(bank);
break;
case MenuOption.Print:
DoPrint(bank);
break;
case MenuOption.PrintTransHistory:
DoRollback(bank);
break;
case MenuOption.Quit:
Console.WriteLine("Thank you for choosing our bank service");
break;
}
}while(option != MenuOption.Quit);
}
}