Example #1
0
        void BorrowBook()
        {
            Console.WriteLine("The number of days for borrow the book");
            int days = Convert.ToInt32(Console.ReadLine());

            CurrentState.BorrowBook(days);
        }