/// <summary> /// Display change information on the screen /// </summary> private static void DisplayChange() { // Call the calculate method change ChangeList = Transaction.CalculateChange(); // Iterate through the list and display information ChangeList.ForEach(x => Factory.Output(x)); }