Ajout du niveau d'experience

This commit is contained in:
2026-06-11 11:06:31 +02:00
parent 35c99928ad
commit 5d16138ed8
16 changed files with 2270 additions and 26 deletions
@@ -3,4 +3,5 @@ namespace PyroFetes.DTO.ExperienceLevel.Request;
public class CreateExperienceLevelDto
{
public string? Label { get; set; }
public int? StaffId { get; set; }
}
@@ -4,4 +4,6 @@ public class GetExperienceLevelDto
{
public int Id { get; set; }
public string? Label { get; set; }
public int? StaffId { get; set; }
}
@@ -4,4 +4,5 @@ public class CreateHistoryOfApprovalDto
{
public DateOnly DeliveryDate { get; set; }
public DateOnly ExpirationDate { get; set; }
public int StaffId { get; set; }
}
@@ -5,4 +5,6 @@ public class GetHistoryOfApprovalDto
public int Id { get; set; }
public DateOnly DeliveryDate { get; set; }
public DateOnly ExpirationDate { get; set; }
public int StaffId { get; set; }
}
@@ -6,4 +6,6 @@ public class GetProviderDto
public decimal Price { get; set; }
public int ProviderTypeId { get; set; }
public string? ProviderType { get; set; }
}
@@ -9,4 +9,6 @@ public class GetStaffDto
public string? Email { get; set; }
public string? F4T2NumberApproval { get; set; }
public DateOnly F4T2ExpirationDate { get; set; }
public string? ExperienceLevel { get; set; }
}