diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:50:10 +0000 |
commit | 51ec5564a0ede45b17e61b7f808cbeca0abaeaa3 (patch) | |
tree | c070ac97446520422113c48a4bb687fd96ab53e5 /clone_customer/CloneCustomer/frmMain.cs | |
parent | customer maintenance (diff) | |
download | cs-51ec5564a0ede45b17e61b7f808cbeca0abaeaa3.tar cs-51ec5564a0ede45b17e61b7f808cbeca0abaeaa3.tar.gz cs-51ec5564a0ede45b17e61b7f808cbeca0abaeaa3.tar.bz2 cs-51ec5564a0ede45b17e61b7f808cbeca0abaeaa3.tar.xz cs-51ec5564a0ede45b17e61b7f808cbeca0abaeaa3.zip |
clone customer m
Diffstat (limited to 'clone_customer/CloneCustomer/frmMain.cs')
-rw-r--r-- | clone_customer/CloneCustomer/frmMain.cs | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/clone_customer/CloneCustomer/frmMain.cs b/clone_customer/CloneCustomer/frmMain.cs new file mode 100644 index 0000000..0b2c911 --- /dev/null +++ b/clone_customer/CloneCustomer/frmMain.cs @@ -0,0 +1,54 @@ +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; +using CustomerMaintenance; + +namespace CloneCustomer +{ + public partial class frmMain : Form + { + public frmMain() + { + InitializeComponent(); + } + + private Customer customer; + private List<Customer> customers; + + private void Form1_Load(object sender, System.EventArgs e) + { + customer = new Customer("John", "Mendez", "jmendez@msysco.com"); + lblCustomer.Text = customer.GetDisplayText(); + } + + private void btnClone_Click(object sender, EventArgs e) + { + if (Validator.IsPresent(txtCopies.Text, txtCopies.Name) != "") { + MessageBox.Show("You need to enter the amount of copies to create"); + return; + } + if (Validator.IsInt32(txtCopies.Text, txtCopies.Name) != "") { + MessageBox.Show("The amount of copies must be a whole number"); + return; + } + int copies = int.Parse(txtCopies.Text); + + customers = new List<Customer>(copies); + for (int i = 0; i < copies; ++i) + customers.Add((Customer)customer.Clone()); + foreach (Customer i in customers) + lstCustomers.Items.Add(i.GetDisplayText()); + } + + private void btnExit_Click(object sender, System.EventArgs e) + { + this.Close(); + } + } +} |