Skip to content

Instantly share code, notes, and snippets.

@MelbourneDeveloper
Last active February 7, 2021 05:57
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 MelbourneDeveloper/ebbcf2209962972bea742cd141b79d59 to your computer and use it in GitHub Desktop.
Save MelbourneDeveloper/ebbcf2209962972bea742cd141b79d59 to your computer and use it in GitHub Desktop.
Smallest Controller Saple
using Microsoft.AspNetCore.Mvc;
namespace WebApplication1.Controllers
{
[ApiController]
[Route("[controller]")]
public class PersonController : ControllerBase
{
[HttpGet]
public string Get(string firstName, string lastName) => $"{firstName} {lastName}";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment