aspnetcore/samples/MvcSample.Web/SimpleRest.cs

21 lines
375 B
C#

using Microsoft.AspNet.Mvc;
namespace MvcSample.Web
{
[Route("api/REST")]
public class SimpleRest : Controller
{
[HttpGet]
public string ThisIsAGetMethod()
{
return "Get method";
}
[HttpGet("OtherThing")]
public string GetOtherThing()
{
return "Get other thing";
}
}
}