Esempio n. 1
0
 public async Task UpdateAsync(Comment comment)
 {
     await _repository.UpdateAsync(comment.AsDocument());
 }
Esempio n. 2
0
 public async Task AddAsync(Comment comment)
 {
     await _repository.AddAsync(comment.AsDocument());
 }