You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EfCore_LoL_S4/WebApiLol/Controllers/RuneController.cs

36 lines
881 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace WebApiLol.Controllers;
[ApiController]
[Route("[controller]")]
public class RuneController : ControllerBase
{
private ILogger<RuneController> _logger;
public RuneController(ILogger<RuneController> logger)
{
_logger = logger;
}
[HttpGet(Name = "GetRune")]
public ActionResult<IEnumerable<RuneDTO>> Get()
{
return Ok(Enumerable.Range(1,5).Select(index => new RuneDTO
{
Name = "La rune",
Description = "test description"
})
.ToArray());
}
}