Use wrapper class for get all api endpoints
All checks were successful
continuous-integration/drone/push Build is passing

To enable e.g. pagination in the future
This commit is contained in:
2024-08-25 13:39:00 +02:00
parent 136dd2311d
commit d6c75654b0
4 changed files with 80 additions and 35 deletions

View File

@@ -1,27 +1,46 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.AspNetCore.Http.HttpResults;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Vegasco.WebApi.Persistence;
namespace Vegasco.WebApi.Cars;
public static class GetCars
{
public record Response(Guid Id, string Name);
public class ApiResponse
{
public IEnumerable<ResponseDto> Cars { get; set; } = [];
}
public record ResponseDto(Guid Id, string Name);
public class Request
{
[FromQuery(Name = "page")] public int? Page { get; set; }
[FromQuery(Name = "pageSize")] public int? PageSize { get; set; }
}
public static RouteHandlerBuilder MapEndpoint(IEndpointRouteBuilder builder)
{
return builder
.MapGet("cars", Endpoint)
.WithDescription("Returns all cars")
.WithTags("Cars");
}
private static async Task<IResult> Endpoint(
private static async Task<Ok<ApiResponse>> Endpoint(
[AsParameters] Request request,
ApplicationDbContext dbContext,
CancellationToken cancellationToken)
{
var cars = await dbContext.Cars
.Select(x => new Response(x.Id.Value, x.Name))
List<ResponseDto> cars = await dbContext.Cars
.Select(x => new ResponseDto(x.Id.Value, x.Name))
.ToListAsync(cancellationToken);
return TypedResults.Ok(cars);
var response = new ApiResponse
{
Cars = cars
};
return TypedResults.Ok(response);
}
}