示例#1
0
        public async Task <IActionResult> AddComment([FromBody] BlogPostComment blogPostComment)
        {
            await _blogPostRepository.AddComment(blogPostComment);

            return(Ok());
        }