예제 #1
0
 public async Task <IActionResult> AddCommentHistory([FromBody] int userid, int dataid)
 {
     return(Ok(await _commentService.AddCommentHistory(userid, dataid)));
 }