Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created January 1, 2017 22:25
Show Gist options
  • Save renatogroffe/41d86d52e2f0989c418582be24bbf621 to your computer and use it in GitHub Desktop.
Save renatogroffe/41d86d52e2f0989c418582be24bbf621 to your computer and use it in GitHub Desktop.
using System;
using Microsoft.AspNetCore.Mvc;
namespace TesteAPIRESTLinux.Controllers
{
[Route("api/[controller]")]
public class ConversorAlturasController : Controller
{
[HttpGet("PesMetros/{alturaPes}")]
public object Get(double alturaPes)
{
return new
{
AlturaPes = alturaPes,
AlturaMetros = Math.Round(alturaPes * 0.3048, 4)
};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment