diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:49:34 +0000 |
commit | c48651e2a37e8af5f1eafff10119eedefa4f96e7 (patch) | |
tree | 6837b96f034a40c00a01b8f5857e7685182cc71b /customer_maintenance/CustomerMaintenance/Customer.cs | |
parent | string handling (diff) | |
download | cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.tar cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.tar.gz cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.tar.bz2 cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.tar.xz cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.zip |
customer maintenance
Diffstat (limited to 'customer_maintenance/CustomerMaintenance/Customer.cs')
-rw-r--r-- | customer_maintenance/CustomerMaintenance/Customer.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/customer_maintenance/CustomerMaintenance/Customer.cs b/customer_maintenance/CustomerMaintenance/Customer.cs new file mode 100644 index 0000000..138b469 --- /dev/null +++ b/customer_maintenance/CustomerMaintenance/Customer.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace CustomerMaintenance +{ + public class Customer + { + public string FirstName{get; set;} + public string LastName{get; set;} + public string Email{get; set;} + + public Customer(string firstName = "", string lastName = "", + string email = "") => + (this.FirstName, this.LastName, this.Email) + = (firstName, lastName, email); + + public string GetDisplayText() { + return FirstName + " " + LastName + + ", " + Email; + } + } +} |