Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created October 24, 2020 23:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xximjasonxx/3d434d02a7939d0e911a3a1b4642e65e to your computer and use it in GitHub Desktop.
Save xximjasonxx/3d434d02a7939d0e911a3a1b4642e65e to your computer and use it in GitHub Desktop.
[ApiController]
[Route("calculate")]
public class CalculationController : Controller
{
[HttpPost("add")]
public IActionResult Add([FromBody]TwoNumberViewModel viewModel)
{
return Ok(viewModel.FirstNumber + viewModel.SecondNumber);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment