public IActionResult GetCommentScore(int id)
 {
     try
     {
         var score = _ideationManager.GetCommentScore(id);
         return(Ok(new VoteCountDto {
             VoteCount = score
         }));
     }
     catch (ArgumentException e)
     {
         return(NotFound(e.Message));
     }
 }