Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created July 20, 2019 16:32
Show Gist options
  • Save ntakouris/1a1e3591b62637df1cd34a80e7a249dc to your computer and use it in GitHub Desktop.
Save ntakouris/1a1e3591b62637df1cd34a80e7a249dc to your computer and use it in GitHub Desktop.
var post = new Post
{
Id = postId,
Name = request.Name
};
var updated = _postService.UpdatePost(post);
if (updated)
return Ok(post);
return NotFound();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment