public GetCommentOutput GetCommentById(GetCommentInput input)
        {
            var getComment          = _commentManager.GetCommentByID(input.Id);
            GetCommentOutput output = Mapper.Map <Models.Comment, GetCommentOutput>(getComment);

            return(output);
        }