Example #1
0
        public static void MoreCoinAddingOptions()
        {
            CommonOptions();
            VendingMachine_BL objMoreCoin = new VendingMachine_BL();

            Console.ReadLine();
        }
Example #2
0
        public static void UserOptions()
        {
            #region User Input and call Business Logic

            CommonOptions();
            //Call Business Logic

            VendingMachine_BL objVending = new VendingMachine_BL(enteredCoin);
            objVending.CheckValidCoin();

            Console.ReadLine();
            #endregion
        }