public ActionResult AddSection(Section section)
        {
            try
            {
                ViewBag.Message = _sectionManager.SaveSection(section);
            }
            catch (Exception exception)
            {
                ViewBag.Message = exception.Message;
            }

            return(View());
        }