Пример #1
0
        public async Task <ActionResult <CommentMarkViewModel> > CreateCommentMarkAsync([FromBody] CreateCommentMarkRequest request)
        {
            var createdEntity = await _commentService.AddCommentMarkAsync(request);

            return(Created(string.Format(CreateEntityPattern, RoutePattern, createdEntity.Id), createdEntity));
        }