using System.Collections.Generic;
public string Name { get; set; }
public decimal Price { get; set; }
public decimal? Discount { get; set; }
public Product(string name, decimal price, decimal? discount = null)
public Product Product { get; set; }
public int Quantity { get; set; }
public OrderItem(Product product, int quantity)
public static void Main()