Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created July 20, 2019 16:33
Show Gist options
  • Select an option

  • Save ntakouris/8d1863c485726edc4606d92c08f451f5 to your computer and use it in GitHub Desktop.

Select an option

Save ntakouris/8d1863c485726edc4606d92c08f451f5 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