summary refs log tree commit diff
path: root/customer_maintenance/CustomerMaintenance/frmAddCustomer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'customer_maintenance/CustomerMaintenance/frmAddCustomer.cs')
-rw-r--r--customer_maintenance/CustomerMaintenance/frmAddCustomer.cs47
1 files changed, 47 insertions, 0 deletions
diff --git a/customer_maintenance/CustomerMaintenance/frmAddCustomer.cs b/customer_maintenance/CustomerMaintenance/frmAddCustomer.cs
new file mode 100644
index 0000000..4021cfd
--- /dev/null
+++ b/customer_maintenance/CustomerMaintenance/frmAddCustomer.cs
@@ -0,0 +1,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();

+		}

+	}

+}