Skip to content

Instantly share code, notes, and snippets.

@kleberksms
Created February 6, 2019 18:12
Show Gist options
  • Save kleberksms/1949aa2c2569db5070ea584f666a6fd7 to your computer and use it in GitHub Desktop.
Save kleberksms/1949aa2c2569db5070ea584f666a6fd7 to your computer and use it in GitHub Desktop.
teste
[HttpPost]
[Route("{system}/{company}/{user}")]
public IActionResult Post([FromBody] CompanyEvaluationViewModel companyEvaluationViewModel)
{
if (!ModelState.IsValid)
{
NotifyModelStateErrors();
return Response(companyEvaluationViewModel);
}
_evaluationAppService.Register(companyEvaluationViewModel);
return Response();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment