static void Main(string[] args) { FileIO fileIO = new FileIO(); VendingMachine ourVendMach = new VendingMachine(fileIO.CreateInventoryList()); CommandLineInterface ourCLI = new CommandLineInterface(ourVendMach); ourCLI.Runner(); }