using System.Collections.Generic; namespace csharpcore { public class GildedRose { public GildedRose(List items) { Items = items; } public List Items { get; } public void UpdateQuality() { Items.ForEach(x => x.UpdateQuality()); } } }