-
Notifications
You must be signed in to change notification settings - Fork 0
/
deposit.cs
57 lines (49 loc) · 1.4 KB
/
deposit.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ATM_system
{
public partial class Deposit : Form
{
private decimal bal;
private Services servicesForm;
public Deposit(Services servicesForm, decimal bal)
{
InitializeComponent();
this.servicesForm = servicesForm;
this.bal = bal;
}
private void btn_back_Click(object sender, EventArgs e)
{
servicesForm.Show();
this.Hide();
}
private void btn_exit_Click(object sender, EventArgs e)
{
System.Windows.Forms.Application.Exit();
}
private void btn_deposit_Click(object sender, EventArgs e)
{
decimal amount;
if (decimal.TryParse(tb_balance.Text, out amount))
{
bal += amount;
MessageBox.Show(this, $"Deposit successful. Your new Balance is: " + bal.ToString() + " EUR");
servicesForm.UpdateBalance(bal);
}
else
{
MessageBox.Show(this, "Invalid amount.");
}
}
private void tb_balance_TextChanged(object sender, EventArgs e)
{
}
}
}