Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 30, 2019 13:31
Show Gist options
  • Save evgomes/649cbd51b40920304fdef47e0b9a182d to your computer and use it in GitHub Desktop.
Save evgomes/649cbd51b40920304fdef47e0b9a182d to your computer and use it in GitHub Desktop.
POST endpoint with mapping, from CategoriesController of Supermarket API
[HttpPost]
public async Task<IActionResult> PostAsync([FromBody] SaveCategoryResource resource)
{
if (!ModelState.IsValid)
return BadRequest(ModelState.GetErrorMessages());
var category = _mapper.Map<SaveCategoryResource, Category>(resource);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment