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/Customer.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/Customer.cs')
-rw-r--r-- | clone_customer/CloneCustomer/Customer.cs | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/clone_customer/CloneCustomer/Customer.cs b/clone_customer/CloneCustomer/Customer.cs new file mode 100644 index 0000000..7461eec --- /dev/null +++ b/clone_customer/CloneCustomer/Customer.cs @@ -0,0 +1,61 @@ +using System; + +namespace CloneCustomer +{ + public class Customer : ICloneable + { + private string firstName; + private string lastName; + private string email; + + public Customer() + { + } + + public object Clone() + { + return new Customer(this.firstName, this.lastName, this.email); + } + + public Customer(string firstName, string lastName, string email) + { + this.FirstName = firstName; + this.LastName = lastName; + this.Email = email; + } + + public string FirstName + { + get { + return firstName; + } + set { + firstName = value; + } + } + + public string LastName + { + get { + return lastName; + } + set + { + lastName = value; + } + } + + public string Email + { + get { + return email; + } + set { + email = value; + } + } + + public string GetDisplayText() => + firstName + " " + lastName + ", " + email; + } +} |