public ActionResult NewTopicAdd()
        {
            List <EducationGroup> educationList       = _topicBLL.GetEducationAll(5);
            SelectList            selectEducationList = new SelectList(educationList, "Id", "Name");

            ViewBag.eduList = selectEducationList;

            Topic topic = new Topic();

            return(View(topic));
        }