using System; using System.Collections.Generic; namespace CloneCustomer { public class CustomerList { private List customers = new List(); public int Count => customers.Count; public Customer this[int i] => customers[i]; public void Add(Customer customer) => customers.Add(customer); } }