Created
February 6, 2019 18:12
-
-
Save kleberksms/1949aa2c2569db5070ea584f666a6fd7 to your computer and use it in GitHub Desktop.
teste
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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