summary refs log tree commit diff
path: root/clone_customer/CloneCustomer/CustomerList.cs
blob: 58e106b533bac4b9eed4685515c848ec1fbabcbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
	}
}