forked from sanchezvem/PyroFetes
35 lines
881 B
C#
35 lines
881 B
C#
using PyroFetes.DTO.Login.Request;
|
|
using PyroFetes.DTO.Login.Response;
|
|
using FastEndpoints;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace PyroFetes.Endpoints.Login;
|
|
|
|
public class DeleteLoginRequest
|
|
{
|
|
public int Id { get; set; }
|
|
}
|
|
|
|
public class DeleteLoginEndpoint(PyroFetesDbContext database) : Endpoint<DeleteLoginRequest>
|
|
{
|
|
public override void Configure()
|
|
{
|
|
Delete("/api/logins/{@Id}", x => new {x.Id});
|
|
}
|
|
|
|
public override async Task HandleAsync(DeleteLoginRequest req, CancellationToken ct)
|
|
{
|
|
var login = await database.Logins.SingleOrDefaultAsync(x => x.Id == req.Id, ct);
|
|
|
|
if (login == null)
|
|
{
|
|
await Send.NotFoundAsync(ct);
|
|
return;
|
|
}
|
|
|
|
database.Logins.Remove(login);
|
|
await database.SaveChangesAsync(ct);
|
|
|
|
await Send.NoContentAsync(ct);
|
|
}
|
|
} |