Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created May 7, 2020 02:32
Show Gist options
  • Save httpmurilo/4117ecaa676460cf6d591c9ddce0ab3e to your computer and use it in GitHub Desktop.
Save httpmurilo/4117ecaa676460cf6d591c9ddce0ab3e to your computer and use it in GitHub Desktop.
Delete
[HttpDelete]
public IActionResult DeletarAutor(Autor autor)
{
if(autor == null)
{
return BadRequest("Autor não foi informado no body da request");
}
_context.Remove(autor);
_context.SaveChanges();
return Ok();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment