Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created May 7, 2020 02:49
Show Gist options
  • Save httpmurilo/c5c21229fdadf80adf61ed759abe1e10 to your computer and use it in GitHub Desktop.
Save httpmurilo/c5c21229fdadf80adf61ed759abe1e10 to your computer and use it in GitHub Desktop.
getTodosAutores
[HttpGet]
public IActionResult RetornarTodosClientes()
{
_context.Autores.ToList();
return Ok (_context.Autores.ToList());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment