24 lines
742 B
C#
24 lines
742 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using PyroFetes.DTO.ExperienceLevel.Response;
|
|
|
|
namespace PyroFetes.Endpoints.ExperienceLevel;
|
|
using FastEndpoints;
|
|
|
|
public class GetAllExperienceLevelsEndpoint(PyroFetesDbContext pyroFetesDbContext) : EndpointWithoutRequest<List<GetExperienceLevelDto>>
|
|
{
|
|
public override void Configure()
|
|
{
|
|
Get ("/api/experienceLevels");
|
|
AllowAnonymous();
|
|
}
|
|
|
|
public override async Task HandleAsync(CancellationToken ct)
|
|
{
|
|
List<GetExperienceLevelDto> experienceLevels= await pyroFetesDbContext.ExperienceLevels.Select(x => new GetExperienceLevelDto()
|
|
{
|
|
Id = x.Id,
|
|
}).ToListAsync(ct);
|
|
|
|
await Send.OkAsync(experienceLevels, ct);
|
|
}
|
|
} |