// Allows user to select a certain park in order to view the details of that park
        private void ViewParkInfo()
        {
            ParkSqlDAL parkDal = new ParkSqlDAL(databaseConnectionString);

            Console.WriteLine();
            int userInput = int.Parse(Console.ReadLine());

            Park park = parkDal.ViewParkInfo(userInput);

            Console.WriteLine();
            Console.WriteLine("Park Information: ");
            Console.WriteLine(park.ToStringLong());

            Console.WriteLine();
            ParkInterface(userInput);
        }