summary refs log tree commit diff
path: root/clone_customer/CloneCustomer/CustomerList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'clone_customer/CloneCustomer/CustomerList.cs')
-rw-r--r--clone_customer/CloneCustomer/CustomerList.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/clone_customer/CloneCustomer/CustomerList.cs b/clone_customer/CloneCustomer/CustomerList.cs
new file mode 100644
index 0000000..58e106b
--- /dev/null
+++ b/clone_customer/CloneCustomer/CustomerList.cs
@@ -0,0 +1,16 @@
+using System;

+using System.Collections.Generic;

+

+namespace CloneCustomer

+{

+    public class CustomerList

+	{

+        private List<Customer> customers = new List<Customer>();

+

+		public int Count => customers.Count;

+

+		public Customer this[int i] => customers[i];

+

+		public void Add(Customer customer) => customers.Add(customer);

+	}

+}