public static void viewSpecificCustomer() { int id; string cust; Console.Clear(); Console.WriteLine(eCoord.customerList()); Console.Write("Please enter a customer id to View:"); id = getIntChoice(); Console.Clear(); cust = eCoord.getCustomerInfoById(id); Console.WriteLine(cust); Console.WriteLine("\nPress any key to continue return to the previous menu."); Console.ReadKey(); }