public async Task AddCommentAsync(string id, Comment comment)
 {
     await _blogRepository.AddCommentAsync(id, comment);
 }