-
Notifications
You must be signed in to change notification settings - Fork 0
/
AccountHoldee.cs
132 lines (117 loc) · 3.98 KB
/
AccountHoldee.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
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 Hold_It_App
{
public partial class AccountHoldee : Form
{
public AccountHoldee(account_head Account_Database, Event_Controller Event_Database, account_info account)
{
ActDB = Account_Database;
EvtDB = Event_Database;
user = account;
InitializeComponent();
}
private account_head ActDB;
private Event_Controller EvtDB;
private account_info user;
private void label1_Click(object sender, EventArgs e)
{
}
private void Account_Load(object sender, EventArgs e)
{
}
private void label1_Click_1(object sender, EventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
label2.Text = user.get_email();
}
private void HomeButton_Click(object sender, EventArgs e)
{
HomeHoldee NewForm = new HomeHoldee(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
this.Hide();
}
private void SearchButton_Click(object sender, EventArgs e)
{
SearchHoldee NewForm = new SearchHoldee(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
this.Hide();
}
private void PostButton_Click(object sender, EventArgs e)
{
PostHoldee NewForm = new PostHoldee(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
this.Hide();
}
private void AccountButton_Click(object sender, EventArgs e)
{
AccountHoldee NewForm = new AccountHoldee(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
NewForm.label2.Text = user.get_email();
if (EvtDB.check_spot(user.get_email()) == false)
NewForm.label8.Show();
else
NewForm.button3.Show();
this.Hide();
}
private void CustomerButton_Click(object sender, EventArgs e)
{
Account NewForm = new Account(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
NewForm.label2.Text = user.get_email();
NewForm.button2.Hide();
NewForm.label6.Text = "Holdee";
if (EvtDB.check_cust_spot(user.get_email()) == true)
NewForm.button3.Show();
else
NewForm.label8.Show();
this.Hide();
}
private void Logout_Click(object sender, EventArgs e)
{
Login NewForm = new Login(ActDB, EvtDB);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
this.Hide();
}
private void Spot_Button_Click(object sender, EventArgs e)
{
Spot current = EvtDB.get_holdee_spot(user.get_email());
SpotHoldee NewForm = new SpotHoldee(ActDB, EvtDB, user, current);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
NewForm.label6.Text = current.get_customerid();
NewForm.label7.Text = current.get_cost().ToString();
NewForm.textBox3.Text = current.get_spotdesc();
this.Hide();
}
}
}