summary refs log tree commit diff
path: root/customer_maintenance/CustomerMaintenance/frmAddCustomer.cs
blob: 4021cfd7e430e237874d3f1eea541c3176c109d5 (plain) (blame)
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace CustomerMaintenance
{
	public partial class frmAddCustomer : Form
	{
		public frmAddCustomer()
		{
			InitializeComponent();
		}

		Customer customer = null;

		public Customer GetNewCustomer()
		{
			this.ShowDialog();
			return customer;
		}

		private void btnSave_Click(object sender, EventArgs e)
		{
			string msg = ""
				+ Validator.IsPresent(txtFirstName.Text, txtFirstName.Tag.ToString())
				+ Validator.IsPresent(txtLastName.Text, txtLastName.Tag.ToString())
				+ Validator.IsValidEmail(txtEmail.Text, txtEmail.Tag.ToString());
			if (msg != "") {
				MessageBox.Show(msg, "Entry Error");
				return;
			}

			customer = new Customer(txtFirstName.Text, txtLastName.Text,
				txtEmail.Text);
			this.Close();
		}

		private void btnCancel_Click(object sender, EventArgs e)
		{
			this.Close();
		}
	}
}