コード例 #1
0
 public async Task UpdateAsync(Comment comment)
 {
     await _repository.UpdateAsync(comment.AsDocument());
 }
コード例 #2
0
 public async Task AddAsync(Comment comment)
 {
     await _repository.AddAsync(comment.AsDocument());
 }