Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Created April 2, 2020 15:48
Show Gist options
  • Save gavilanch/e513bd41482126ed8395c841edcde896 to your computer and use it in GitHub Desktop.
Save gavilanch/e513bd41482126ed8395c841edcde896 to your computer and use it in GitHub Desktop.
[Route("api/[controller]")]
[ApiController]
public class AutoresController: ControllerBase
{
private readonly ILogger<AutoresController> logger;
public AutoresController(ILogger<AutoresController> logger)
{
this.logger = logger;
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment