public IEnumerable <GetTopicOutput> GetAll()
        {
            var getAll = _topicManager.GetAllList().ToList();
            List <GetTopicOutput> output = Mapper.Map <List <Models.Topic>, List <GetTopicOutput> >(getAll);

            return(output);
        }