示例#1
0
 public async Task UpdateComment(int id, CommentViewModel commentViewModel)
 {
     await _commentLogic.Update(id, comment =>
     {
         comment.Text = comment.Text;
     });
 }