public Comment AddCommentToIdea(string userId, int ideaId) { Comment comment = _ideationManager.AddCommentToIdea(ideaId); _userManager.AddCommentToUser(comment, userId); return(comment); }