예제 #1
0
 public async Task <IActionResult> GetAllCommentsByUser(Guid userId)
 {
     return(Ok(await _commentForPostService.GetAllCommentsByUser(userId)));
 }