public IActionResult DeleteComment(int id)
 {
     _ideationManager.RemoveComment(id);
     _unitOfWorkManager.Save();
     return(Ok());
 }