finalisation des endpoints

This commit is contained in:
2025-11-13 15:11:12 +01:00
parent 55f92ad761
commit 5c12a45ae6
41 changed files with 79 additions and 258 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.Show.Request;
namespace PyroFetes.DTO.Show.Request;
public class CreateShowDto
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.Show.Request;
namespace PyroFetes.DTO.Show.Request;
public class IdShowDto
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.Show.Request;
namespace PyroFetes.DTO.Show.Request;
public class UpdateShowDto
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.Show.Response;
namespace PyroFetes.DTO.Show.Response;
public class ReadShowDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundCategory.Request;
namespace PyroFetes.DTO.Sound.Request;
public class CreateSoundDto
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundCategory.Request;
namespace PyroFetes.DTO.Sound.Request;
public class IdSoundto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundCategory.Request;
namespace PyroFetes.DTO.Sound.Request;
public class UpdateSoundDto
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundCategory.Response;
namespace PyroFetes.DTO.Sound.Response;
public class ReadSoundDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundCategory.Request;
namespace PyroFetes.DTO.SoundCategory.Request;
public class CreateSoundCategoryDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundCategory.Request;
namespace PyroFetes.DTO.SoundCategory.Request;
public class IdSoundCategoryDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundCategory.Request;
namespace PyroFetes.DTO.SoundCategory.Request;
public class UpdateSoundCategoryDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundCategory.Response;
namespace PyroFetes.DTO.SoundCategory.Response;
public class ReadSoundCategoryDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundTimecode.Request;
namespace PyroFetes.DTO.SoundTimecode.Request;
public class CreateSoundTimecodeDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundTimecode.Request;
namespace PyroFetes.DTO.SoundTimecode.Request;
public class IdSoundTimecodeDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundTimecode.Request;
namespace PyroFetes.DTO.SoundTimecode.Request;
public class UpdateSoundTimecodeDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.SoundTimecode.Response;
namespace PyroFetes.DTO.SoundTimecode.Response;
public class ReadSoundTimecodeDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.Staff.Request;
namespace PyroFetes.DTO.Staff.Request;
public class CreateStaffDto
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.Staff.Request;
namespace PyroFetes.DTO.Staff.Request;
public class IdStaffDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.Staff.Request;
namespace PyroFetes.DTO.Staff.Request;
public class UpdateStaffDto
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.Staff.Response;
namespace PyroFetes.DTO.Staff.Response;
public class ReadStaffDto
{
@@ -1,10 +1,10 @@
namespace PF3.DTO.Truck.Request;
namespace PyroFetes.DTO.Truck.Request;
public class CreateTruckDto
{
public string? Type { get; set; }
public string? MaxExplosiveCapacity { get; set; }
public double? MaxExplosiveCapacity { get; set; }
public string? Sizes { get; set; }
public string? Statut { get; set; }
public string? Status { get; set; }
public int? ShowId { get; set; }
}
+1 -1
View File
@@ -1,4 +1,4 @@
namespace PF3.DTO.Truck.Request;
namespace PyroFetes.DTO.Truck.Request;
public class IdTruckDto
{
@@ -1,4 +1,4 @@
namespace PF3.DTO.Truck.Request;
namespace PyroFetes.DTO.Truck.Request;
public class UpdateTruckDto
{
+2 -2
View File
@@ -1,10 +1,10 @@
namespace PF3.DTO.Truck.Response;
namespace PyroFetes.DTO.Truck.Response;
public class ReadTruckDto
{
public int? Id { get; set; }
public string? Type { get; set; }
public string? MaxExplosiveCapacity { get; set; }
public double? MaxExplosiveCapacity { get; set; }
public string? Sizes { get; set; }
public string? Statut { get; set; }
public int? ShowId { get; set; }