Falcon
Yönetici
Kod:
// Controllers/ProductsController.cs
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
namespace OrnekProje.Controllers
{
[ApiController]
[Route("api/[controller]")]
public class ProductsController : ControllerBase
{
[HttpGet]
public IEnumerable<string> Get()
{
return new string[] { "Laptop", "Telefon", "Tablet" };
}
[HttpGet("{id}")]
public string Get(int id)
{
return $"Ürün ID: {id}";
}
}
}