public ActionResult Add(int pageId)
        {
            var model = new AddViewModel
            {
                PageId          = pageId,
                SectionTypeList = _sectionService.GetSectionTypes(),
                PartialList     = _associationService.Get()
            };

            return(View("_Add", model));
        }