コード例 #1
0
        public async Task <IActionResult> AddComment(CommentViewModel comment)
        {
            await _recipesLogic.AddComment(comment.ToCommentDto());

            return(Ok());
        }