-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
44 lines (30 loc) · 1.23 KB
/
Program.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
using ConsoleApp1;
internal class Program
{
private static void Main(string[] args)
{
Person person1 = new Person("ge2321", 100, 3030,"chkhuto","password");
person1.Deposit(200);
person1.Withdraw(5);
person1.Withdraw(50);
person1.Deposit(200);
//Console.WriteLine(person1.MinReqBalance("ge2321"));
//Console.WriteLine(person1.Balance);
/*person1.TransferAccToAcc("sdaas", 30);
Console.WriteLine(person1.SecondAccBalance);*/
//person1.BalanceSapr(12, 2, 23);
//Console.WriteLine(person1.MinReqBalance("ge2321"));
//person1.ValidatePin(30302);
person1.RegisterUser(01014048, 59957500, "chkhuot", "ch");
/*
Console.WriteLine(person1.Password);
person1.UpdatePassword("password", "newpass", "chkhuto");
Console.WriteLine(person1.Password);*/
person1.GetTransactions();
//person1.FilterTransactionsByAmount(50);
person1.GetDetailedAccountsInfo();
person1.CreateAccForExistingUser("010180056", "ge09090");
person1.GetDetailedAccountsInfo();
// Console.WriteLine(person1.CurrencyConverter(100, "USD", "GEL"));
}
}