// This class provides all user communications, but not much else.
 // All the "work" of the application should be done elsewhere
 // All instance of Console.ReadLine and Console.WriteLine should be in this class.
 // This class is not testable.
 public UserInterface()
 {
     FileAccess.LoadInventory();
 }