Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created October 10, 2021 08:10
[HttpGet]
public async Task<ActionResult<IList<AuthType>>> GetAll()
{
var authTypes = await _authTypeService.FindAll();
return authTypes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment