public string ChooseYourFurniture() { return($"Today I will purchase a {_chair.GetType().Name}, {_sofa.GetType().Name}, and {_coffeeTable.GetType().Name}."); }
public override void Interact(Sofa sofa) { Console.WriteLine($"Interaction between: {GetType().Name} and {sofa.GetType().Name}"); }