示例#1
0
        public async void RemoveComment(Comment comment)
        {
            await _commentsRepository.RemoveAsync(comment.Id, comment.BlogId);

            //  Console.WriteLine();
        }
        public async void Remove(EmbeddedBlog blog)
        {
            await _blogsRepository.RemoveAsync(blog.Id, blog.Type);

            // Console.WriteLine();
        }