private void ViewAllCampgrounds(Park park)
        {
            //            CampgroundSqlDAL dal = new CampgroundSqlDAL(DatabaseConnection);
            List <Campground> campgrounds = campgroundSqlDAL.ViewAllCampgrounds(park);

            if (campgrounds.Count > 0)
            {
                Console.WriteLine("Number".PadRight(11) + "Name".PadRight(35) + "Open".PadRight(20) + "Close".PadRight(20) + "Daily Fee".PadRight(0));

                foreach (Campground campground in campgrounds)
                {
                    Console.WriteLine("#".PadRight(0) + (campground.CampgroundId).ToString().PadRight(10) + (campground.CampName).PadRight(35) + TranslateMonth(campground.OpeningMonth).PadRight(20) + TranslateMonth(campground.ClosingMonth).PadRight(20) + campground.DailyFee.ToString("C").PadRight(20));
                    Console.WriteLine();
                }
            }
            else
            {
                Console.WriteLine("**** NO RESULTS ****");
                Console.WriteLine();
            }
            return;
        }