예제 #1
0
        static void Main(string[] args)
        {
            FileIO fileIO = new FileIO();


            VendingMachine ourVendMach = new VendingMachine(fileIO.CreateInventoryList());

            CommandLineInterface ourCLI = new CommandLineInterface(ourVendMach);

            ourCLI.Runner();
        }