using FastEndpoints; using Microsoft.EntityFrameworkCore; using PyroFetes.DTO.Product.Response; using PyroFetes.Models; using PyroFetes.Repositories; namespace PyroFetes.Endpoints.Products; public class GetAllProductsEndpoint(ProductsRepository productsRepository) : EndpointWithoutRequest> { public override void Configure() { Get("/products"); AllowAnonymous(); } public override async Task HandleAsync(CancellationToken ct) { await Send.OkAsync(await productsRepository.ProjectToListAsync(ct), ct); } }