dbcontext et endpoint begin

This commit is contained in:
2025-10-02 17:52:40 +02:00
parent 165addd785
commit 8d0c2aa3f6
15 changed files with 4922 additions and 223 deletions

View File

@@ -0,0 +1,9 @@
using System.Net;
using PF3.DTO.Truck.Request;
using PF3.DTO.Truck.Response;
namespace PF3.Endpoint;
public class CreateTruckEndpoint(PF3DbContext pf3DbContext):EndPoint<CreateTruckDto, ReadTruckDto>
{
}