public IEnumerable <GetCommentOutput> GetAll()
        {
            var getAll = _commentManager.GetAllList().ToList();
            List <GetCommentOutput> output = Mapper.Map <List <Models.Comment>, List <GetCommentOutput> >(getAll);

            return(output);
        }