Staff DTO / Request Finished 09/10

This commit is contained in:
2025-10-09 17:48:07 +02:00
parent df81c7b12d
commit 5cbbfa1434
9 changed files with 172 additions and 3 deletions

View File

@@ -0,0 +1,41 @@
using Microsoft.EntityFrameworkCore;
using PyroFetes.DTO.Staff.Request;
using PyroFetes.DTO.Staff.Response;
using FastEndpoints;
namespace PyroFetes.Endpoints.Staff;
public class UpdateStaffRequest(PyroFetesDbContext pyroFetesDbContext) : Endpoint <UpdateStaffDto, GetStaffDto>
{
public override void Configure()
{
Put ("/api/Staffs/{@Id}", x => new { x.Id });
AllowAnonymous();
}
public override async Task HandleAsync(UpdateStaffDto req, CancellationToken ct)
{
Models.Staff? databaseStaff = await pyroFetesDbContext.Staffs.SingleOrDefaultAsync(x => x.Id == req.Id, cancellationToken: ct);
if (databaseStaff == null)
{
await Send.NotFoundAsync(ct);
return;
}
else
{
databaseStaff.F4T2NumberApproval = req.F4T2NumberApproval;
databaseStaff.F4T2ExpirationDate = req.F4T2ExpirationDate;
}
await pyroFetesDbContext.SaveChangesAsync(ct);
GetStaffDto dto = new()
{
Id = databaseStaff.Id,
F4T2NumberApproval = req.F4T2NumberApproval,
F4T2ExpirationDate = req.F4T2ExpirationDate,
};
await Send.OkAsync(dto, ct);
}
}