using System.Collections.Generic;
public static void Main()
var customer=new Customer();
customer.Orders.Add(order);
Console.WriteLine(customer.Id);
Console.WriteLine(customer.Name);
public List<Order> Orders;
Orders=new List<Order>();
public Customer(int id):this()
public Customer(int id,string name):this(id)