コード例 #1
0
        public async Task <IActionResult> CreateComment([FromBody] Comment comment)
        {
            await topicObj.AddCommentToDBAsync(comment);

            return(Ok());
        }