Beispiel #1
0
 public async Task DeleteCommentAsync(string id)
 {
     if (id == null)
     {
         throw new ArgumentNullException();
     }
     await _commentDao.DeleteCommentAsync(id);
 }