Files
pyrofetes-backend/PyroFetes/Endpoints/Suppliers/UpdateSupplierEndpoint.cs
T
2026-05-24 17:22:03 +01:00

31 lines
920 B
C#

using FastEndpoints;
using PyroFetes.DTO.Supplier.Request;
using PyroFetes.Models;
using PyroFetes.Repositories;
using PyroFetes.Specifications.Suppliers;
namespace PyroFetes.Endpoints.Suppliers;
public class UpdateSupplierEndpoint(SuppliersRepository suppliersRepository, AutoMapper.IMapper mapper) : Endpoint<UpdateSupplierDto>
{
public override void Configure()
{
Put("/suppliers/{@Id}", x => new { x.Id });
AllowAnonymous();
}
public override async Task HandleAsync(UpdateSupplierDto req, CancellationToken ct)
{
Supplier? supplier = await suppliersRepository.FirstOrDefaultAsync(new GetSupplierByIdSpec(req.Id), ct);
if (supplier is null)
{
await Send.NotFoundAsync(ct);
return;
}
mapper.Map(req, supplier);
await suppliersRepository.SaveChangesAsync(ct);
await Send.NoContentAsync(ct);
}
}