public ActionResult GetTopicList(int id)
        {
            var topicList = mapper.Map <IEnumerable <TopicModel> >(publishingService.GetPublishingTopics(id));

            return(PartialView(topicList));
        }