using System.Collections.Generic; namespace TheatricalPlayersRefactoringKata { public class Invoice { private string _customer; private List _performances; public string Customer { get => _customer; set => _customer = value; } public List Performances { get => _performances; set => _performances = value; } public Invoice(string customer, List performance) { this._customer = customer; this._performances = performance; } } }