[Route("api/[controller]")] public class ProductsController : ControllerBase { [HttpGet("{id}")] public IActionResult GetById(int id) { } }