blob: 0b2c9118cd8cfae64134bbbc674f221f0b6772d9 (
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
48
49
50
51
52
53
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();
}
}
}
|