From b12e5c0a0f8c922fbaccc3b372b5193b49d00318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9?= Date: Thu, 2 Oct 2025 16:35:43 +0200 Subject: [PATCH 1/8] Show DTO fini --- .idea/.idea.PF3/.idea/.name | 1 + PF3/DTO/Request/CreateShowDto.cs | 10 ++++++++++ PF3/DTO/Request/IdShowDto.cs | 6 ++++++ PF3/DTO/Request/UpdateShowDto.cs | 11 +++++++++++ PF3/DTO/Response/ReadShowDto.cs | 11 +++++++++++ PF3/PF3.csproj | 5 +++++ 6 files changed, 44 insertions(+) create mode 100644 .idea/.idea.PF3/.idea/.name create mode 100644 PF3/DTO/Request/CreateShowDto.cs create mode 100644 PF3/DTO/Request/IdShowDto.cs create mode 100644 PF3/DTO/Request/UpdateShowDto.cs create mode 100644 PF3/DTO/Response/ReadShowDto.cs diff --git a/.idea/.idea.PF3/.idea/.name b/.idea/.idea.PF3/.idea/.name new file mode 100644 index 0000000..9dee77a --- /dev/null +++ b/.idea/.idea.PF3/.idea/.name @@ -0,0 +1 @@ +PF3 \ No newline at end of file diff --git a/PF3/DTO/Request/CreateShowDto.cs b/PF3/DTO/Request/CreateShowDto.cs new file mode 100644 index 0000000..b0fbb7f --- /dev/null +++ b/PF3/DTO/Request/CreateShowDto.cs @@ -0,0 +1,10 @@ +namespace PF3.DTO.Request; + +public class CreateShowDto +{ + public string? Name { get; set; } + public string? Place { get; set; } + public string? Description { get; set; } + public string? PyrotechnicImplementationPlan { get; set; } + public DateOnly? Date { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Request/IdShowDto.cs b/PF3/DTO/Request/IdShowDto.cs new file mode 100644 index 0000000..302e266 --- /dev/null +++ b/PF3/DTO/Request/IdShowDto.cs @@ -0,0 +1,6 @@ +namespace PF3.DTO.Request; + +public class IdShowDto +{ + public int? Id { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Request/UpdateShowDto.cs b/PF3/DTO/Request/UpdateShowDto.cs new file mode 100644 index 0000000..a70dca6 --- /dev/null +++ b/PF3/DTO/Request/UpdateShowDto.cs @@ -0,0 +1,11 @@ +namespace PF3.DTO.Request; + +public class UpdateShowDto +{ + public int? Id { get; set; } + public string? Name { get; set; } + public string? Place { get; set; } + public string? Description { get; set; } + public string? PyrotechnicImplementationPlan { get; set; } + public DateOnly? Date { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Response/ReadShowDto.cs b/PF3/DTO/Response/ReadShowDto.cs new file mode 100644 index 0000000..2f4cd1b --- /dev/null +++ b/PF3/DTO/Response/ReadShowDto.cs @@ -0,0 +1,11 @@ +namespace PF3.DTO.Response; + +public class ReadShowDto +{ + public int? Id { get; set; } + public string? Name { get; set; } + public string? Place { get; set; } + public string? Description { get; set; } + public string? PyrotechnicImplementationPlan { get; set; } + public DateOnly? Date { get; set; } +} \ No newline at end of file diff --git a/PF3/PF3.csproj b/PF3/PF3.csproj index 07ef0ac..f6110dd 100644 --- a/PF3/PF3.csproj +++ b/PF3/PF3.csproj @@ -11,4 +11,9 @@ + + + + + From a179a3fab00089f6522ba14940cbd8a9b633a590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9?= Date: Thu, 2 Oct 2025 16:38:06 +0200 Subject: [PATCH 2/8] =?UTF-8?q?changement=20de=20dosiier=20et=20cr=C3=A9at?= =?UTF-8?q?ion=20du=20dossier=20show=20afin=20de=20respecter=20l'architect?= =?UTF-8?q?ure=20RESTful?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PF3/DTO/{ => Show}/Request/CreateShowDto.cs | 0 PF3/DTO/{ => Show}/Request/IdShowDto.cs | 0 PF3/DTO/{ => Show}/Request/UpdateShowDto.cs | 0 PF3/DTO/{ => Show}/Response/ReadShowDto.cs | 0 PF3/PF3.csproj | 1 + 5 files changed, 1 insertion(+) rename PF3/DTO/{ => Show}/Request/CreateShowDto.cs (100%) rename PF3/DTO/{ => Show}/Request/IdShowDto.cs (100%) rename PF3/DTO/{ => Show}/Request/UpdateShowDto.cs (100%) rename PF3/DTO/{ => Show}/Response/ReadShowDto.cs (100%) diff --git a/PF3/DTO/Request/CreateShowDto.cs b/PF3/DTO/Show/Request/CreateShowDto.cs similarity index 100% rename from PF3/DTO/Request/CreateShowDto.cs rename to PF3/DTO/Show/Request/CreateShowDto.cs diff --git a/PF3/DTO/Request/IdShowDto.cs b/PF3/DTO/Show/Request/IdShowDto.cs similarity index 100% rename from PF3/DTO/Request/IdShowDto.cs rename to PF3/DTO/Show/Request/IdShowDto.cs diff --git a/PF3/DTO/Request/UpdateShowDto.cs b/PF3/DTO/Show/Request/UpdateShowDto.cs similarity index 100% rename from PF3/DTO/Request/UpdateShowDto.cs rename to PF3/DTO/Show/Request/UpdateShowDto.cs diff --git a/PF3/DTO/Response/ReadShowDto.cs b/PF3/DTO/Show/Response/ReadShowDto.cs similarity index 100% rename from PF3/DTO/Response/ReadShowDto.cs rename to PF3/DTO/Show/Response/ReadShowDto.cs diff --git a/PF3/PF3.csproj b/PF3/PF3.csproj index f6110dd..0ace12c 100644 --- a/PF3/PF3.csproj +++ b/PF3/PF3.csproj @@ -12,6 +12,7 @@ + From 801dc9dec867b82546994c3634ca3bb7f91aa57e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9?= Date: Thu, 2 Oct 2025 16:53:02 +0200 Subject: [PATCH 3/8] Truck & Staff DTO --- PF3/DTO/Show/Request/CreateShowDto.cs | 2 +- PF3/DTO/Show/Request/IdShowDto.cs | 2 +- PF3/DTO/Show/Request/UpdateShowDto.cs | 2 +- PF3/DTO/Show/Response/ReadShowDto.cs | 2 +- PF3/DTO/Staff/Request/CreateStaffDto.cs | 9 +++++++++ PF3/DTO/Staff/Request/IdStaffDto.cs | 6 ++++++ PF3/DTO/Staff/Request/UpdateStaffDto.cs | 10 ++++++++++ PF3/DTO/Staff/Response/ReadStaffDto.cs | 10 ++++++++++ PF3/DTO/Truck/Request/CreateTruckDto.cs | 10 ++++++++++ PF3/DTO/Truck/Request/IdTruckDto.cs | 6 ++++++ PF3/DTO/Truck/Request/UpdateTruckDto.cs | 11 +++++++++++ PF3/DTO/Truck/Response/ReadTruckDto.cs | 11 +++++++++++ 12 files changed, 77 insertions(+), 4 deletions(-) create mode 100644 PF3/DTO/Staff/Request/CreateStaffDto.cs create mode 100644 PF3/DTO/Staff/Request/IdStaffDto.cs create mode 100644 PF3/DTO/Staff/Request/UpdateStaffDto.cs create mode 100644 PF3/DTO/Staff/Response/ReadStaffDto.cs create mode 100644 PF3/DTO/Truck/Request/CreateTruckDto.cs create mode 100644 PF3/DTO/Truck/Request/IdTruckDto.cs create mode 100644 PF3/DTO/Truck/Request/UpdateTruckDto.cs create mode 100644 PF3/DTO/Truck/Response/ReadTruckDto.cs diff --git a/PF3/DTO/Show/Request/CreateShowDto.cs b/PF3/DTO/Show/Request/CreateShowDto.cs index b0fbb7f..cda5a6d 100644 --- a/PF3/DTO/Show/Request/CreateShowDto.cs +++ b/PF3/DTO/Show/Request/CreateShowDto.cs @@ -1,4 +1,4 @@ -namespace PF3.DTO.Request; +namespace PF3.DTO.Show.Request; public class CreateShowDto { diff --git a/PF3/DTO/Show/Request/IdShowDto.cs b/PF3/DTO/Show/Request/IdShowDto.cs index 302e266..ebf5e37 100644 --- a/PF3/DTO/Show/Request/IdShowDto.cs +++ b/PF3/DTO/Show/Request/IdShowDto.cs @@ -1,4 +1,4 @@ -namespace PF3.DTO.Request; +namespace PF3.DTO.Show.Request; public class IdShowDto { diff --git a/PF3/DTO/Show/Request/UpdateShowDto.cs b/PF3/DTO/Show/Request/UpdateShowDto.cs index a70dca6..4fef81f 100644 --- a/PF3/DTO/Show/Request/UpdateShowDto.cs +++ b/PF3/DTO/Show/Request/UpdateShowDto.cs @@ -1,4 +1,4 @@ -namespace PF3.DTO.Request; +namespace PF3.DTO.Show.Request; public class UpdateShowDto { diff --git a/PF3/DTO/Show/Response/ReadShowDto.cs b/PF3/DTO/Show/Response/ReadShowDto.cs index 2f4cd1b..e5a656a 100644 --- a/PF3/DTO/Show/Response/ReadShowDto.cs +++ b/PF3/DTO/Show/Response/ReadShowDto.cs @@ -1,4 +1,4 @@ -namespace PF3.DTO.Response; +namespace PF3.DTO.Show.Response; public class ReadShowDto { diff --git a/PF3/DTO/Staff/Request/CreateStaffDto.cs b/PF3/DTO/Staff/Request/CreateStaffDto.cs new file mode 100644 index 0000000..c68747d --- /dev/null +++ b/PF3/DTO/Staff/Request/CreateStaffDto.cs @@ -0,0 +1,9 @@ +namespace PF3.DTO.Staff.Request; + +public class CreateStaffDto +{ + public string? FirstName { get; set; } + public string? LastName { get; set; } + public string? Profession { get; set; } + public string? Email { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Staff/Request/IdStaffDto.cs b/PF3/DTO/Staff/Request/IdStaffDto.cs new file mode 100644 index 0000000..8f8ae83 --- /dev/null +++ b/PF3/DTO/Staff/Request/IdStaffDto.cs @@ -0,0 +1,6 @@ +namespace PF3.DTO.Staff.Request; + +public class IdStaffDto +{ + public int? Id { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Staff/Request/UpdateStaffDto.cs b/PF3/DTO/Staff/Request/UpdateStaffDto.cs new file mode 100644 index 0000000..31fa354 --- /dev/null +++ b/PF3/DTO/Staff/Request/UpdateStaffDto.cs @@ -0,0 +1,10 @@ +namespace PF3.DTO.Staff.Request; + +public class UpdateStaffDto +{ + public int? Id { get; set; } + public string? FirstName { get; set; } + public string? LastName { get; set; } + public string? Profession { get; set; } + public string? Email { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Staff/Response/ReadStaffDto.cs b/PF3/DTO/Staff/Response/ReadStaffDto.cs new file mode 100644 index 0000000..c11a6ab --- /dev/null +++ b/PF3/DTO/Staff/Response/ReadStaffDto.cs @@ -0,0 +1,10 @@ +namespace PF3.DTO.Staff.Response; + +public class ReadStaffDto +{ + public int? Id { get; set; } + public string? FirstName { get; set; } + public string? LastName { get; set; } + public string? Profession { get; set; } + public string? Email { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Truck/Request/CreateTruckDto.cs b/PF3/DTO/Truck/Request/CreateTruckDto.cs new file mode 100644 index 0000000..e49a883 --- /dev/null +++ b/PF3/DTO/Truck/Request/CreateTruckDto.cs @@ -0,0 +1,10 @@ +namespace PF3.DTO.Truck.Request; + +public class CreateTruckDto +{ + public string? Type { get; set; } + public string? MaxExplosiveCapacity { get; set; } + public string? Sizes { get; set; } + public bool? Statut { get; set; } + public int? ShowId { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Truck/Request/IdTruckDto.cs b/PF3/DTO/Truck/Request/IdTruckDto.cs new file mode 100644 index 0000000..4ce547b --- /dev/null +++ b/PF3/DTO/Truck/Request/IdTruckDto.cs @@ -0,0 +1,6 @@ +namespace PF3.DTO.Truck.Request; + +public class IdTruckDto +{ + public int? Id { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Truck/Request/UpdateTruckDto.cs b/PF3/DTO/Truck/Request/UpdateTruckDto.cs new file mode 100644 index 0000000..8743417 --- /dev/null +++ b/PF3/DTO/Truck/Request/UpdateTruckDto.cs @@ -0,0 +1,11 @@ +namespace PF3.DTO.Truck.Request; + +public class UpdateTruckDto +{ + public int? Id { get; set; } + public string? Type { get; set; } + public string? MaxExplosiveCapacity { get; set; } + public string? Sizes { get; set; } + public bool? Statut { get; set; } + public int? ShowId { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Truck/Response/ReadTruckDto.cs b/PF3/DTO/Truck/Response/ReadTruckDto.cs new file mode 100644 index 0000000..4218a76 --- /dev/null +++ b/PF3/DTO/Truck/Response/ReadTruckDto.cs @@ -0,0 +1,11 @@ +namespace PF3.DTO.Truck.Response; + +public class ReadTruckDto +{ + public int? Id { get; set; } + public string? Type { get; set; } + public string? MaxExplosiveCapacity { get; set; } + public string? Sizes { get; set; } + public bool? Statut { get; set; } + public int? ShowId { get; set; } +} \ No newline at end of file From 949aedac78fcdb7414c7063ae4337be71767448b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9?= Date: Thu, 2 Oct 2025 16:58:13 +0200 Subject: [PATCH 4/8] Dto Sound --- PF3/DTO/Sound/Request/CreateSoundDto.cs | 6 ++++++ PF3/DTO/Sound/Request/IdSoundDto.cs | 6 ++++++ PF3/DTO/Sound/Request/UpdateSoundDto.cs | 7 +++++++ PF3/DTO/Sound/Response/ReadSoundDto.cs | 7 +++++++ 4 files changed, 26 insertions(+) create mode 100644 PF3/DTO/Sound/Request/CreateSoundDto.cs create mode 100644 PF3/DTO/Sound/Request/IdSoundDto.cs create mode 100644 PF3/DTO/Sound/Request/UpdateSoundDto.cs create mode 100644 PF3/DTO/Sound/Response/ReadSoundDto.cs diff --git a/PF3/DTO/Sound/Request/CreateSoundDto.cs b/PF3/DTO/Sound/Request/CreateSoundDto.cs new file mode 100644 index 0000000..a373188 --- /dev/null +++ b/PF3/DTO/Sound/Request/CreateSoundDto.cs @@ -0,0 +1,6 @@ +namespace PF3.DTO.Sound.Request; + +public class CreateSoundDto +{ + public string? Name { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Sound/Request/IdSoundDto.cs b/PF3/DTO/Sound/Request/IdSoundDto.cs new file mode 100644 index 0000000..90595f0 --- /dev/null +++ b/PF3/DTO/Sound/Request/IdSoundDto.cs @@ -0,0 +1,6 @@ +namespace PF3.DTO.Sound.Request; + +public class IdSoundDto +{ + public int? Id { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Sound/Request/UpdateSoundDto.cs b/PF3/DTO/Sound/Request/UpdateSoundDto.cs new file mode 100644 index 0000000..65c5540 --- /dev/null +++ b/PF3/DTO/Sound/Request/UpdateSoundDto.cs @@ -0,0 +1,7 @@ +namespace PF3.DTO.Sound.Request; + +public class UpdateSoundDto +{ + public int? Id { get; set; } + public string? Name { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Sound/Response/ReadSoundDto.cs b/PF3/DTO/Sound/Response/ReadSoundDto.cs new file mode 100644 index 0000000..c6f8579 --- /dev/null +++ b/PF3/DTO/Sound/Response/ReadSoundDto.cs @@ -0,0 +1,7 @@ +namespace PF3.DTO.Sound.Response; + +public class ReadSoundDto +{ + public int? Id { get; set; } + public string? Name { get; set; } +} \ No newline at end of file From 29b9520193e723de41c86163342c1fe98e7f4942 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9?= Date: Thu, 2 Oct 2025 17:12:04 +0200 Subject: [PATCH 5/8] Finit les DTO --- PF3/DTO/Sound/Request/CreateSoundDto.cs | 2 +- PF3/DTO/Sound/Request/IdSoundDto.cs | 6 ------ PF3/DTO/Sound/Request/IdSoundto.cs | 6 ++++++ PF3/DTO/Sound/Request/UpdateSoundDto.cs | 2 +- PF3/DTO/Sound/Response/ReadSoundDto.cs | 2 +- .../Request/CreateSoundCategoryDto.cs | 13 +++++++++++++ .../SoundCategory/Request/IdSoundCategoryDto.cs | 6 ++++++ .../Request/UpdateSoundCategoryDto.cs | 14 ++++++++++++++ .../SoundCategory/Response/ReadSoundCategoryDto.cs | 14 ++++++++++++++ .../Request/CreateSoundTimecodeDto.cs | 9 +++++++++ .../SoundTimecode/Request/IdSoundTimecodeDto.cs | 6 ++++++ .../Request/UpdateSoundTimecodeDto.cs | 10 ++++++++++ .../SoundTimecode/Response/ReadSoundTimecodeDto.cs | 10 ++++++++++ PF3/PF3.csproj | 2 ++ 14 files changed, 93 insertions(+), 9 deletions(-) delete mode 100644 PF3/DTO/Sound/Request/IdSoundDto.cs create mode 100644 PF3/DTO/Sound/Request/IdSoundto.cs create mode 100644 PF3/DTO/SoundCategory/Request/CreateSoundCategoryDto.cs create mode 100644 PF3/DTO/SoundCategory/Request/IdSoundCategoryDto.cs create mode 100644 PF3/DTO/SoundCategory/Request/UpdateSoundCategoryDto.cs create mode 100644 PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs create mode 100644 PF3/DTO/SoundTimecode/Request/CreateSoundTimecodeDto.cs create mode 100644 PF3/DTO/SoundTimecode/Request/IdSoundTimecodeDto.cs create mode 100644 PF3/DTO/SoundTimecode/Request/UpdateSoundTimecodeDto.cs create mode 100644 PF3/DTO/SoundTimecode/Response/ReadSoundTimecodeDto.cs diff --git a/PF3/DTO/Sound/Request/CreateSoundDto.cs b/PF3/DTO/Sound/Request/CreateSoundDto.cs index a373188..bc3ed9a 100644 --- a/PF3/DTO/Sound/Request/CreateSoundDto.cs +++ b/PF3/DTO/Sound/Request/CreateSoundDto.cs @@ -1,4 +1,4 @@ -namespace PF3.DTO.Sound.Request; +namespace PF3.DTO.SoundCategory.Request; public class CreateSoundDto { diff --git a/PF3/DTO/Sound/Request/IdSoundDto.cs b/PF3/DTO/Sound/Request/IdSoundDto.cs deleted file mode 100644 index 90595f0..0000000 --- a/PF3/DTO/Sound/Request/IdSoundDto.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace PF3.DTO.Sound.Request; - -public class IdSoundDto -{ - public int? Id { get; set; } -} \ No newline at end of file diff --git a/PF3/DTO/Sound/Request/IdSoundto.cs b/PF3/DTO/Sound/Request/IdSoundto.cs new file mode 100644 index 0000000..41bad0b --- /dev/null +++ b/PF3/DTO/Sound/Request/IdSoundto.cs @@ -0,0 +1,6 @@ +namespace PF3.DTO.SoundCategory.Request; + +public class IdSoundto +{ + public int? Id { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/Sound/Request/UpdateSoundDto.cs b/PF3/DTO/Sound/Request/UpdateSoundDto.cs index 65c5540..ddfe905 100644 --- a/PF3/DTO/Sound/Request/UpdateSoundDto.cs +++ b/PF3/DTO/Sound/Request/UpdateSoundDto.cs @@ -1,4 +1,4 @@ -namespace PF3.DTO.Sound.Request; +namespace PF3.DTO.SoundCategory.Request; public class UpdateSoundDto { diff --git a/PF3/DTO/Sound/Response/ReadSoundDto.cs b/PF3/DTO/Sound/Response/ReadSoundDto.cs index c6f8579..f6983d7 100644 --- a/PF3/DTO/Sound/Response/ReadSoundDto.cs +++ b/PF3/DTO/Sound/Response/ReadSoundDto.cs @@ -1,4 +1,4 @@ -namespace PF3.DTO.Sound.Response; +namespace PF3.DTO.SoundCategory.Response; public class ReadSoundDto { diff --git a/PF3/DTO/SoundCategory/Request/CreateSoundCategoryDto.cs b/PF3/DTO/SoundCategory/Request/CreateSoundCategoryDto.cs new file mode 100644 index 0000000..7a4d807 --- /dev/null +++ b/PF3/DTO/SoundCategory/Request/CreateSoundCategoryDto.cs @@ -0,0 +1,13 @@ +namespace PF3.DTO.SoundCategory.Request; + +public class CreateSoundCategoryDto +{ + public string? Name { get; set; } + public string? Type { get; set; } + public string? Artist { get; set; } + public string? Duration { get; set; } + public string? Kind { get; set; } + public string? Format { get; set; } + public string? CreationDate { get; set; } + public string? SoundCategoryId { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/SoundCategory/Request/IdSoundCategoryDto.cs b/PF3/DTO/SoundCategory/Request/IdSoundCategoryDto.cs new file mode 100644 index 0000000..d2aad4f --- /dev/null +++ b/PF3/DTO/SoundCategory/Request/IdSoundCategoryDto.cs @@ -0,0 +1,6 @@ +namespace PF3.DTO.SoundCategory.Request; + +public class IdSoundCategoryDto +{ + public int? Id { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/SoundCategory/Request/UpdateSoundCategoryDto.cs b/PF3/DTO/SoundCategory/Request/UpdateSoundCategoryDto.cs new file mode 100644 index 0000000..bdf7d4f --- /dev/null +++ b/PF3/DTO/SoundCategory/Request/UpdateSoundCategoryDto.cs @@ -0,0 +1,14 @@ +namespace PF3.DTO.SoundCategory.Request; + +public class UpdateSoundCategoryDto +{ + public int? Id { get; set; } + public string? Name { get; set; } + public string? Type { get; set; } + public string? Artist { get; set; } + public string? Duration { get; set; } + public string? Kind { get; set; } + public string? Format { get; set; } + public string? CreationDate { get; set; } + public string? SoundCategoryId { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs b/PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs new file mode 100644 index 0000000..f433964 --- /dev/null +++ b/PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs @@ -0,0 +1,14 @@ +namespace PF3.DTO.SoundCategory.Response; + +public class ReadSoundCategoryDto +{ + public int? Id { get; set; } + public string? Name { get; set; } + public string? Type { get; set; } + public string? Artist { get; set; } + public string? Duration { get; set; } + public string? Kind { get; set; } + public string? Format { get; set; } + public string? CreationDate { get; set; } + public string? SoundCategoryId { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/SoundTimecode/Request/CreateSoundTimecodeDto.cs b/PF3/DTO/SoundTimecode/Request/CreateSoundTimecodeDto.cs new file mode 100644 index 0000000..e4256a3 --- /dev/null +++ b/PF3/DTO/SoundTimecode/Request/CreateSoundTimecodeDto.cs @@ -0,0 +1,9 @@ +namespace PF3.DTO.SoundTimecode.Request; + +public class CreateSoundTimecodeDto +{ + public int? ShowId { get; set; } + public int? SoundId { get; set; } + public string? Start { get; set; } + public string? End { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/SoundTimecode/Request/IdSoundTimecodeDto.cs b/PF3/DTO/SoundTimecode/Request/IdSoundTimecodeDto.cs new file mode 100644 index 0000000..3f86699 --- /dev/null +++ b/PF3/DTO/SoundTimecode/Request/IdSoundTimecodeDto.cs @@ -0,0 +1,6 @@ +namespace PF3.DTO.SoundTimecode.Request; + +public class IdSoundTimecodeDto +{ + public int? Id { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/SoundTimecode/Request/UpdateSoundTimecodeDto.cs b/PF3/DTO/SoundTimecode/Request/UpdateSoundTimecodeDto.cs new file mode 100644 index 0000000..0397435 --- /dev/null +++ b/PF3/DTO/SoundTimecode/Request/UpdateSoundTimecodeDto.cs @@ -0,0 +1,10 @@ +namespace PF3.DTO.SoundTimecode.Request; + +public class UpdateSoundTimecodeDto +{ + public int? Id { get; set; } + public int? ShowId { get; set; } + public int? SoundId { get; set; } + public string? Start { get; set; } + public string? End { get; set; } +} \ No newline at end of file diff --git a/PF3/DTO/SoundTimecode/Response/ReadSoundTimecodeDto.cs b/PF3/DTO/SoundTimecode/Response/ReadSoundTimecodeDto.cs new file mode 100644 index 0000000..c8e4cc7 --- /dev/null +++ b/PF3/DTO/SoundTimecode/Response/ReadSoundTimecodeDto.cs @@ -0,0 +1,10 @@ +namespace PF3.DTO.SoundTimecode.Response; + +public class ReadSoundTimecodeDto +{ + public int? Id { get; set; } + public int? ShowId { get; set; } + public int? SoundId { get; set; } + public string? Start { get; set; } + public string? End { get; set; } +} \ No newline at end of file diff --git a/PF3/PF3.csproj b/PF3/PF3.csproj index 0ace12c..50c7d75 100644 --- a/PF3/PF3.csproj +++ b/PF3/PF3.csproj @@ -13,6 +13,8 @@ + + From 52066ccdc260c20b121eefe837b96e735c74e464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9?= Date: Thu, 2 Oct 2025 17:21:25 +0200 Subject: [PATCH 6/8] models + fix DTO --- PF3/DTO/Sound/Request/CreateSoundDto.cs | 8 +++++ PF3/DTO/Sound/Request/UpdateSoundDto.cs | 8 +++++ PF3/DTO/Sound/Response/ReadSoundDto.cs | 8 +++++ .../Request/CreateSoundCategoryDto.cs | 7 ---- .../Request/UpdateSoundCategoryDto.cs | 7 ---- .../Response/ReadSoundCategoryDto.cs | 7 ---- PF3/DTO/Truck/Request/CreateTruckDto.cs | 2 +- PF3/Models/Show.cs | 27 ++++++++++++++ PF3/Models/Sound.cs | 35 +++++++++++++++++++ PF3/Models/SoundCategory.cs | 13 +++++++ PF3/Models/SoundTimecode.cs | 22 ++++++++++++ PF3/Models/Staff.cs | 22 ++++++++++++ PF3/Models/Truck.cs | 24 +++++++++++++ PF3/PF3.csproj | 1 - 14 files changed, 168 insertions(+), 23 deletions(-) create mode 100644 PF3/Models/Show.cs create mode 100644 PF3/Models/Sound.cs create mode 100644 PF3/Models/SoundCategory.cs create mode 100644 PF3/Models/SoundTimecode.cs create mode 100644 PF3/Models/Staff.cs create mode 100644 PF3/Models/Truck.cs diff --git a/PF3/DTO/Sound/Request/CreateSoundDto.cs b/PF3/DTO/Sound/Request/CreateSoundDto.cs index bc3ed9a..591f6d2 100644 --- a/PF3/DTO/Sound/Request/CreateSoundDto.cs +++ b/PF3/DTO/Sound/Request/CreateSoundDto.cs @@ -3,4 +3,12 @@ public class CreateSoundDto { public string? Name { get; set; } + public string? Type { get; set; } + public string? Artist { get; set; } + public string? Duration { get; set; } + public string? Kind { get; set; } + public string? Format { get; set; } + public string? CreationDate { get; set; } + public string? SoundCategoryId { get; set; } + } \ No newline at end of file diff --git a/PF3/DTO/Sound/Request/UpdateSoundDto.cs b/PF3/DTO/Sound/Request/UpdateSoundDto.cs index ddfe905..8bc3bdf 100644 --- a/PF3/DTO/Sound/Request/UpdateSoundDto.cs +++ b/PF3/DTO/Sound/Request/UpdateSoundDto.cs @@ -4,4 +4,12 @@ public class UpdateSoundDto { public int? Id { get; set; } public string? Name { get; set; } + public string? Type { get; set; } + public string? Artist { get; set; } + public string? Duration { get; set; } + public string? Kind { get; set; } + public string? Format { get; set; } + public string? CreationDate { get; set; } + public string? SoundCategoryId { get; set; } + } \ No newline at end of file diff --git a/PF3/DTO/Sound/Response/ReadSoundDto.cs b/PF3/DTO/Sound/Response/ReadSoundDto.cs index f6983d7..2c2bca5 100644 --- a/PF3/DTO/Sound/Response/ReadSoundDto.cs +++ b/PF3/DTO/Sound/Response/ReadSoundDto.cs @@ -4,4 +4,12 @@ public class ReadSoundDto { public int? Id { get; set; } public string? Name { get; set; } + public string? Type { get; set; } + public string? Artist { get; set; } + public string? Duration { get; set; } + public string? Kind { get; set; } + public string? Format { get; set; } + public string? CreationDate { get; set; } + public string? SoundCategoryId { get; set; } + } \ No newline at end of file diff --git a/PF3/DTO/SoundCategory/Request/CreateSoundCategoryDto.cs b/PF3/DTO/SoundCategory/Request/CreateSoundCategoryDto.cs index 7a4d807..743d458 100644 --- a/PF3/DTO/SoundCategory/Request/CreateSoundCategoryDto.cs +++ b/PF3/DTO/SoundCategory/Request/CreateSoundCategoryDto.cs @@ -3,11 +3,4 @@ public class CreateSoundCategoryDto { public string? Name { get; set; } - public string? Type { get; set; } - public string? Artist { get; set; } - public string? Duration { get; set; } - public string? Kind { get; set; } - public string? Format { get; set; } - public string? CreationDate { get; set; } - public string? SoundCategoryId { get; set; } } \ No newline at end of file diff --git a/PF3/DTO/SoundCategory/Request/UpdateSoundCategoryDto.cs b/PF3/DTO/SoundCategory/Request/UpdateSoundCategoryDto.cs index bdf7d4f..43e7e1f 100644 --- a/PF3/DTO/SoundCategory/Request/UpdateSoundCategoryDto.cs +++ b/PF3/DTO/SoundCategory/Request/UpdateSoundCategoryDto.cs @@ -4,11 +4,4 @@ public class UpdateSoundCategoryDto { public int? Id { get; set; } public string? Name { get; set; } - public string? Type { get; set; } - public string? Artist { get; set; } - public string? Duration { get; set; } - public string? Kind { get; set; } - public string? Format { get; set; } - public string? CreationDate { get; set; } - public string? SoundCategoryId { get; set; } } \ No newline at end of file diff --git a/PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs b/PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs index f433964..c113b6f 100644 --- a/PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs +++ b/PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs @@ -4,11 +4,4 @@ public class ReadSoundCategoryDto { public int? Id { get; set; } public string? Name { get; set; } - public string? Type { get; set; } - public string? Artist { get; set; } - public string? Duration { get; set; } - public string? Kind { get; set; } - public string? Format { get; set; } - public string? CreationDate { get; set; } - public string? SoundCategoryId { get; set; } } \ No newline at end of file diff --git a/PF3/DTO/Truck/Request/CreateTruckDto.cs b/PF3/DTO/Truck/Request/CreateTruckDto.cs index e49a883..6b306b8 100644 --- a/PF3/DTO/Truck/Request/CreateTruckDto.cs +++ b/PF3/DTO/Truck/Request/CreateTruckDto.cs @@ -3,7 +3,7 @@ public class CreateTruckDto { public string? Type { get; set; } - public string? MaxExplosiveCapacity { get; set; } + public double? MaxExplosiveCapacity { get; set; } public string? Sizes { get; set; } public bool? Statut { get; set; } public int? ShowId { get; set; } diff --git a/PF3/Models/Show.cs b/PF3/Models/Show.cs new file mode 100644 index 0000000..b076106 --- /dev/null +++ b/PF3/Models/Show.cs @@ -0,0 +1,27 @@ +using System.ComponentModel.DataAnnotations; + +namespace PF3.Models; + +public class Show +{ + [Key] public int Id { get; set; } + + [Required] + public string? Name { get; set; } + + [Required, MaxLength(120)] + public string? Place { get; set; } + + [MaxLength(500)] + public string? Description { get; set; } + + // Lien (chemin/URL/nom de fichier) vers le plan d’implémentation pyrotechnique + [Required, MaxLength(500)] + public string? PyrotechnicImplementationPlan { get; set; } + + public DateTime? Date { get; set; } + + public ICollection Staff { get; set; } = new List(); + public ICollection Trucks { get; set; } = new List(); + public ICollection SoundCues { get; set; } = new List(); +} \ No newline at end of file diff --git a/PF3/Models/Sound.cs b/PF3/Models/Sound.cs new file mode 100644 index 0000000..f1fbf0c --- /dev/null +++ b/PF3/Models/Sound.cs @@ -0,0 +1,35 @@ +using System.ComponentModel.DataAnnotations; +using PF3.Models; + +namespace PF3.Models; + +public class Sound +{ + [Key] public int Id { get; set; } + + [Required, MaxLength(120)] + public string Name { get; set; } = null!; + + [Required, MaxLength(60)] + public string? Type { get; set; } + + [Required, MaxLength(120)] + public string? Artist { get; set; } + + [Required, Range(0, int.MaxValue)] + public int? Duration { get; set; } + + [Required, MaxLength(40)] + public string? Kind { get; set; } + + [Required, MaxLength(40)] + public string? Format { get; set; } + + public DateTime? CreationDate { get; set; } + + [Required] + public int SoundCategoryId { get; set; } + public SoundCategory? Category { get; set; } + + public ICollection ShowPlacements { get; set; } = new List(); +} \ No newline at end of file diff --git a/PF3/Models/SoundCategory.cs b/PF3/Models/SoundCategory.cs new file mode 100644 index 0000000..89d67bc --- /dev/null +++ b/PF3/Models/SoundCategory.cs @@ -0,0 +1,13 @@ +using System.ComponentModel.DataAnnotations; + +namespace PF3.Models; + +public class SoundCategory +{ + [Key] public int Id { get; set; } + + [Required, MaxLength(60)] + public string Name { get; set; } = null!; + + public ICollection Sounds { get; set; } = new List(); +} \ No newline at end of file diff --git a/PF3/Models/SoundTimecode.cs b/PF3/Models/SoundTimecode.cs new file mode 100644 index 0000000..0f349ce --- /dev/null +++ b/PF3/Models/SoundTimecode.cs @@ -0,0 +1,22 @@ +using System.ComponentModel.DataAnnotations; + +namespace PF3.Models; + +public class SoundTimecode +{ + [Key] public int Id { get; set; } + + [Required] + public int ShowId { get; set; } + public Show? Show { get; set; } + + [Required] + public int SoundId { get; set; } + public Sound? Sound { get; set; } + + [Required, Range(0, int.MaxValue)] + public int Start { get; set; } + + [Required, Range(0, int.MaxValue)] + public int End { get; set; } +} \ No newline at end of file diff --git a/PF3/Models/Staff.cs b/PF3/Models/Staff.cs new file mode 100644 index 0000000..caa3c1e --- /dev/null +++ b/PF3/Models/Staff.cs @@ -0,0 +1,22 @@ +using System.ComponentModel.DataAnnotations; + +namespace PF3.Models; + +public class Staff +{ + [Key] public int Id { get; set; } + + [Required, MaxLength(60)] + public string FirstName { get; set; } = null!; + + [Required, MaxLength(60)] + public string LastName { get; set; } = null!; + + [Required, MaxLength(100)] + public string? Profession { get; set; } + + [Required, MaxLength(120)] + public string? Email { get; set; } + + public ICollection Shows { get; set; } = new List(); +} \ No newline at end of file diff --git a/PF3/Models/Truck.cs b/PF3/Models/Truck.cs new file mode 100644 index 0000000..aae485f --- /dev/null +++ b/PF3/Models/Truck.cs @@ -0,0 +1,24 @@ +using System.ComponentModel.DataAnnotations; + +namespace PF3.Models; + +public class Truck +{ + [Key] public int Id { get; set; } + + [Required, MaxLength(40)] + public string Type { get; set; } = null!; + + [Range(0, double.MaxValue)] + public double? MaxExplosiveCapacity { get; set; } + + [Required, MaxLength(80)] + public string? Sizes { get; set; } + + [Required, MaxLength(40)] + public string? Statut { get; set; } + + [Required] + public int ShowId { get; set; } + public Show? Show { get; set; } +} \ No newline at end of file diff --git a/PF3/PF3.csproj b/PF3/PF3.csproj index 50c7d75..72289cb 100644 --- a/PF3/PF3.csproj +++ b/PF3/PF3.csproj @@ -16,7 +16,6 @@ - From 165addd785553761de758f16e2d3cc058655af80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9?= Date: Thu, 2 Oct 2025 17:23:48 +0200 Subject: [PATCH 7/8] fix DTO --- PF3/DTO/Show/Request/CreateShowDto.cs | 2 +- PF3/DTO/Show/Request/UpdateShowDto.cs | 2 +- PF3/DTO/Show/Response/ReadShowDto.cs | 2 +- PF3/DTO/Sound/Request/CreateSoundDto.cs | 2 +- PF3/DTO/Sound/Request/UpdateSoundDto.cs | 2 +- PF3/DTO/Sound/Response/ReadSoundDto.cs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/PF3/DTO/Show/Request/CreateShowDto.cs b/PF3/DTO/Show/Request/CreateShowDto.cs index cda5a6d..5230f53 100644 --- a/PF3/DTO/Show/Request/CreateShowDto.cs +++ b/PF3/DTO/Show/Request/CreateShowDto.cs @@ -6,5 +6,5 @@ public class CreateShowDto public string? Place { get; set; } public string? Description { get; set; } public string? PyrotechnicImplementationPlan { get; set; } - public DateOnly? Date { get; set; } + public DateTime? Date { get; set; } } \ No newline at end of file diff --git a/PF3/DTO/Show/Request/UpdateShowDto.cs b/PF3/DTO/Show/Request/UpdateShowDto.cs index 4fef81f..ac3c132 100644 --- a/PF3/DTO/Show/Request/UpdateShowDto.cs +++ b/PF3/DTO/Show/Request/UpdateShowDto.cs @@ -7,5 +7,5 @@ public class UpdateShowDto public string? Place { get; set; } public string? Description { get; set; } public string? PyrotechnicImplementationPlan { get; set; } - public DateOnly? Date { get; set; } + public DateTime? Date { get; set; } } \ No newline at end of file diff --git a/PF3/DTO/Show/Response/ReadShowDto.cs b/PF3/DTO/Show/Response/ReadShowDto.cs index e5a656a..4e91893 100644 --- a/PF3/DTO/Show/Response/ReadShowDto.cs +++ b/PF3/DTO/Show/Response/ReadShowDto.cs @@ -7,5 +7,5 @@ public class ReadShowDto public string? Place { get; set; } public string? Description { get; set; } public string? PyrotechnicImplementationPlan { get; set; } - public DateOnly? Date { get; set; } + public DateTime? Date { get; set; } } \ No newline at end of file diff --git a/PF3/DTO/Sound/Request/CreateSoundDto.cs b/PF3/DTO/Sound/Request/CreateSoundDto.cs index 591f6d2..e1775ae 100644 --- a/PF3/DTO/Sound/Request/CreateSoundDto.cs +++ b/PF3/DTO/Sound/Request/CreateSoundDto.cs @@ -8,7 +8,7 @@ public class CreateSoundDto public string? Duration { get; set; } public string? Kind { get; set; } public string? Format { get; set; } - public string? CreationDate { get; set; } + public DateTime? CreationDate { get; set; } public string? SoundCategoryId { get; set; } } \ No newline at end of file diff --git a/PF3/DTO/Sound/Request/UpdateSoundDto.cs b/PF3/DTO/Sound/Request/UpdateSoundDto.cs index 8bc3bdf..2382b13 100644 --- a/PF3/DTO/Sound/Request/UpdateSoundDto.cs +++ b/PF3/DTO/Sound/Request/UpdateSoundDto.cs @@ -9,7 +9,7 @@ public class UpdateSoundDto public string? Duration { get; set; } public string? Kind { get; set; } public string? Format { get; set; } - public string? CreationDate { get; set; } + public DateTime? CreationDate { get; set; } public string? SoundCategoryId { get; set; } } \ No newline at end of file diff --git a/PF3/DTO/Sound/Response/ReadSoundDto.cs b/PF3/DTO/Sound/Response/ReadSoundDto.cs index 2c2bca5..0ee013d 100644 --- a/PF3/DTO/Sound/Response/ReadSoundDto.cs +++ b/PF3/DTO/Sound/Response/ReadSoundDto.cs @@ -9,7 +9,7 @@ public class ReadSoundDto public string? Duration { get; set; } public string? Kind { get; set; } public string? Format { get; set; } - public string? CreationDate { get; set; } + public DateTime? CreationDate { get; set; } public string? SoundCategoryId { get; set; } } \ No newline at end of file From acde92122510b5a594dc1cab0cbb6c83131c8b15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?CERNON=20Timoth=C3=A9?= Date: Thu, 9 Oct 2025 14:57:01 +0200 Subject: [PATCH 8/8] Sauvegarde temporaire avant init Git Flow --- PF3/obj/Debug/net8.0/PF3.AssemblyInfo.cs | 2 +- .../Debug/net8.0/PF3.AssemblyInfoInputs.cache | 2 +- ....GeneratedMSBuildEditorConfig.editorconfig | 4 +-- PF3/obj/Debug/net8.0/PF3.assets.cache | Bin 4225 -> 4395 bytes .../net8.0/PF3.csproj.AssemblyReference.cache | Bin 2463 -> 2454 bytes PF3/obj/PF3.csproj.nuget.dgspec.json | 23 +++++++----------- PF3/obj/PF3.csproj.nuget.g.props | 13 +++++----- PF3/obj/PF3.csproj.nuget.g.targets | 2 +- PF3/obj/project.assets.json | 22 ++++++----------- PF3/obj/project.nuget.cache | 18 +++++++------- PF3/obj/project.packagespec.json | 2 +- PF3/obj/rider.project.model.nuget.info | 2 +- PF3/obj/rider.project.restore.info | 2 +- 13 files changed, 40 insertions(+), 52 deletions(-) diff --git a/PF3/obj/Debug/net8.0/PF3.AssemblyInfo.cs b/PF3/obj/Debug/net8.0/PF3.AssemblyInfo.cs index 7e45a4e..7335a7e 100644 --- a/PF3/obj/Debug/net8.0/PF3.AssemblyInfo.cs +++ b/PF3/obj/Debug/net8.0/PF3.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("PF3")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c16eba08827f01fcea3f0239460ae6e6545a6391")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+165addd785553761de758f16e2d3cc058655af80")] [assembly: System.Reflection.AssemblyProductAttribute("PF3")] [assembly: System.Reflection.AssemblyTitleAttribute("PF3")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/PF3/obj/Debug/net8.0/PF3.AssemblyInfoInputs.cache b/PF3/obj/Debug/net8.0/PF3.AssemblyInfoInputs.cache index ced34cb..f84d0d0 100644 --- a/PF3/obj/Debug/net8.0/PF3.AssemblyInfoInputs.cache +++ b/PF3/obj/Debug/net8.0/PF3.AssemblyInfoInputs.cache @@ -1 +1 @@ -c64d534fc592784bab27bfe1baf1dd346f89292103323f949322a81fd17722c6 +d3139df06f9994cda4be2d362ebfc6c074efb01538849556b5345e908fb503b4 diff --git a/PF3/obj/Debug/net8.0/PF3.GeneratedMSBuildEditorConfig.editorconfig b/PF3/obj/Debug/net8.0/PF3.GeneratedMSBuildEditorConfig.editorconfig index 02dffe8..c5eaad4 100644 --- a/PF3/obj/Debug/net8.0/PF3.GeneratedMSBuildEditorConfig.editorconfig +++ b/PF3/obj/Debug/net8.0/PF3.GeneratedMSBuildEditorConfig.editorconfig @@ -9,11 +9,11 @@ build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = PF3 build_property.RootNamespace = PF3 -build_property.ProjectDir = C:\Users\timot\RiderProjects\PF3\AP-WEB-PF3\PF3\ +build_property.ProjectDir = /home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 8.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\timot\RiderProjects\PF3\AP-WEB-PF3\PF3 +build_property.MSBuildProjectDirectory = /home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3 build_property._RazorSourceGeneratorDebug = diff --git a/PF3/obj/Debug/net8.0/PF3.assets.cache b/PF3/obj/Debug/net8.0/PF3.assets.cache index 7116b571db811a0dc2582783db83623855634381..bf2f524ddfa31e328ec4e76c9799f8f56b111a70 100644 GIT binary patch literal 4395 zcmd6q-A>d{5XTqYObo_$A%t-029#`2Bm#QfZHJ|yd)oAzBAa-j-uVPx z_y}J4@d75s_fYY|hcG%rTX(>^yC|WYWU}em|DOK#bUNoh%Zm$zGnq`r{O~iM`Ly%; z$GeZ;a*xK>pMA04e|@zx`+00z|NiF1%eS2&xI&Fj=cSUit2u_y zH4&6S>7HS38fB1r#WsCcy6Z|aq$fa`t`C~)fiOH!t`u|aGLadgE|m|z)oQh*lCRC zEr&%`260fh1rVH%(vI^{hCMwrzQ8^x-dd5D!*dYi$MmE$~U+U6Zp#`jg8F{orcyS6WnYNHSbsg6}=4hU%-3K!8v zCk9pfa~QOb-57KV^kDR2oX643qeVkT1OxodNTgA~uXkz{3cf`ialD`Ab9GWF(WgM{qu6 zN5H80OGVUVFq5c9ah{Jcyy#jA7Ck)dn_96J>4_d>vt8>{<8$}VVbK?L_ z*q<()zOgQx$gmgZZtu)WAG85L-Y z9z$Oq?y2xV8GW6t%ecU{wPvI_rA4;oWt3xka5N>HNzHdN2?(WC9F W30Mn0(l{r^>r0}?JXT*7KDu85Gb&>M literal 4225 zcmc&%%~BIV5RMxDRHA?&VubKlWofwyDT_ipMUYfV!DxWfR_P==gptkex-$#m>=StO z1$Y8a9=+(*gIC|dH?W)Rk`|XN6h$&sU8$LTbbrirzV0r*$mg!dVzKETUp~K%?fxo! z%6`jy{GE7TnoRsT`2I6lU$hRszDKl@~Qdgp8D_yg^Dp$J0Dm$#o zrCt*i*OvB{(wKBCt}3?6HQV79bA-O2WwdNYH$_>8uVAOI9>H_cS>tL6;jaLmbA)D? z<`qBmCHTAyhWj`eQh9f3Dna}?ZC;yu9K@H3Sq5{B>_0q0f_FnO4Bi8V!F$0zLfig-QV{`-dxbVg%J=fWJ_fpa7`5uq~xiRA%PbnU9kYN-`r za+#XVF4Pz1XR}Y5B`CEiq{qxuNqL5__0l$TxuLIld9I3nc|%|Au7dTN8R!YEf)^`d zBxnakjIijqh!HLw7BRx)xQMkoH=#qr^uR@PGw9I9;QTIF66_w>IM@W(#pW&{MRPak z+`>qufK;0cG+{||JLu@bSWW`VjuddhmF7Nj#ZE7b>lB=KpuiKR^tXXbu>%ZaIt}M^ z&A=u>Rli`gEcrtey9tvKl=tpNP3$i+wOz3M>hTcfo^)gGNw+Gf*v9_f6m&O+m;1gG zGQ1FHWO#|_61om+?IS`dye0=-1(J&HDl(_`=MNB(ElB#*9vl6Ce2vw3kN*rq1zD&$ zrl<&I?l1E#VR55tg_)A~zTwg~cexQ?cRe1*cX}4lN7Rl+)e|S%6PmWC5uPQP{hGcT z^G{z+O0L%T9p2-57R=ndZ^?G{U)mLB#uacMgsxHvi(yw;^2+$1q@uEGxCtN`GZmcy Pv#lZiqt3KOH6H3OytoH7 diff --git a/PF3/obj/Debug/net8.0/PF3.csproj.AssemblyReference.cache b/PF3/obj/Debug/net8.0/PF3.csproj.AssemblyReference.cache index 1ddd96cfe2a094b92529cc6c014576628f712759..32c21c06e6673bc2a9bf678175c0e48c5c08edab 100644 GIT binary patch delta 439 zcmb8pF$%&k6vpwSXmwV>MFLJPn%5Q)C-E3=5^L0;O-hm?C=~BdaPCu|_C*ViKs#_S{0s;v?I01Br;WGHPcjGpXb@ zR+>|la>-Hwa~jYnfRosOd$|jW91osapq~$d*(#yn;xPJSJJ%rwBWsV>K delta 419 zcmbOxJYQIyjgggsfq^m4*(xTqIJKxarX({rza&O4uQWZiB&HxSIXf{uwK!&?fsAmB zg`R<)kwHvOW>QREY6*}RGjW2<#_A%*C`PU_6QHEAfw7?_17iXK!*Vl|i}H)}(@OO6 z3sUnE3o>I2_004PO<*P$mn7z;Bo?I@0d3gq%9P8fhiZNy0rMx{W0n(&F$0=u1Tzxk y*vXD8a+`HnO3{rgCuH0?Rz)nvZDwSfgKktQA)|mU6DiHa;WkN*YDQiZuL1y~xr12% diff --git a/PF3/obj/PF3.csproj.nuget.dgspec.json b/PF3/obj/PF3.csproj.nuget.dgspec.json index 30eb7ca..7905ee6 100644 --- a/PF3/obj/PF3.csproj.nuget.dgspec.json +++ b/PF3/obj/PF3.csproj.nuget.dgspec.json @@ -1,31 +1,26 @@ { "format": 1, "restore": { - "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj": {} + "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj": {} }, "projects": { - "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj": { + "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj", + "projectUniqueName": "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj", "projectName": "PF3", - "projectPath": "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj", - "packagesPath": "C:\\Users\\timot\\.nuget\\packages\\", - "outputPath": "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\obj\\", + "projectPath": "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj", + "packagesPath": "/home/cernont@stsio.lan/.nuget/packages/", + "outputPath": "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/obj/", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\timot\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + "/home/cernont@stsio.lan/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "/usr/share/dotnet/library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -77,7 +72,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\timot\\.dotnet\\sdk\\8.0.414/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.413/PortableRuntimeIdentifierGraph.json" } } } diff --git a/PF3/obj/PF3.csproj.nuget.g.props b/PF3/obj/PF3.csproj.nuget.g.props index 477f4c8..e7182fc 100644 --- a/PF3/obj/PF3.csproj.nuget.g.props +++ b/PF3/obj/PF3.csproj.nuget.g.props @@ -4,20 +4,19 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\timot\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + /home/cernont@stsio.lan/.nuget/packages/ + /home/cernont@stsio.lan/.nuget/packages/ PackageReference 6.14.0 - - + - - + + - C:\Users\timot\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + /home/cernont@stsio.lan/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5 \ No newline at end of file diff --git a/PF3/obj/PF3.csproj.nuget.g.targets b/PF3/obj/PF3.csproj.nuget.g.targets index eea8d76..04427d8 100644 --- a/PF3/obj/PF3.csproj.nuget.g.targets +++ b/PF3/obj/PF3.csproj.nuget.g.targets @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/PF3/obj/project.assets.json b/PF3/obj/project.assets.json index 69e65c9..d286fd7 100644 --- a/PF3/obj/project.assets.json +++ b/PF3/obj/project.assets.json @@ -482,31 +482,25 @@ ] }, "packageFolders": { - "C:\\Users\\timot\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + "/home/cernont@stsio.lan/.nuget/packages/": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj", + "projectUniqueName": "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj", "projectName": "PF3", - "projectPath": "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj", - "packagesPath": "C:\\Users\\timot\\.nuget\\packages\\", - "outputPath": "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\obj\\", + "projectPath": "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj", + "packagesPath": "/home/cernont@stsio.lan/.nuget/packages/", + "outputPath": "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/obj/", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\timot\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + "/home/cernont@stsio.lan/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "/usr/share/dotnet/library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -558,7 +552,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\timot\\.dotnet\\sdk\\8.0.414/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.413/PortableRuntimeIdentifierGraph.json" } } } diff --git a/PF3/obj/project.nuget.cache b/PF3/obj/project.nuget.cache index 94015d5..5575517 100644 --- a/PF3/obj/project.nuget.cache +++ b/PF3/obj/project.nuget.cache @@ -1,16 +1,16 @@ { "version": 2, - "dgSpecHash": "PTOV/VCB8nk=", + "dgSpecHash": "I6lxwgSKaoU=", "success": true, - "projectFilePath": "C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj", + "projectFilePath": "/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj", "expectedPackageFiles": [ - "C:\\Users\\timot\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.20\\microsoft.aspnetcore.openapi.8.0.20.nupkg.sha512", - "C:\\Users\\timot\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", - "C:\\Users\\timot\\.nuget\\packages\\microsoft.openapi\\1.6.14\\microsoft.openapi.1.6.14.nupkg.sha512", - "C:\\Users\\timot\\.nuget\\packages\\swashbuckle.aspnetcore\\6.6.2\\swashbuckle.aspnetcore.6.6.2.nupkg.sha512", - "C:\\Users\\timot\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.6.2\\swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512", - "C:\\Users\\timot\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.6.2\\swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512", - "C:\\Users\\timot\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.6.2\\swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512" + "/home/cernont@stsio.lan/.nuget/packages/microsoft.aspnetcore.openapi/8.0.20/microsoft.aspnetcore.openapi.8.0.20.nupkg.sha512", + "/home/cernont@stsio.lan/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5/microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "/home/cernont@stsio.lan/.nuget/packages/microsoft.openapi/1.6.14/microsoft.openapi.1.6.14.nupkg.sha512", + "/home/cernont@stsio.lan/.nuget/packages/swashbuckle.aspnetcore/6.6.2/swashbuckle.aspnetcore.6.6.2.nupkg.sha512", + "/home/cernont@stsio.lan/.nuget/packages/swashbuckle.aspnetcore.swagger/6.6.2/swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512", + "/home/cernont@stsio.lan/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.6.2/swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512", + "/home/cernont@stsio.lan/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.6.2/swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/PF3/obj/project.packagespec.json b/PF3/obj/project.packagespec.json index ae3828c..85736ca 100644 --- a/PF3/obj/project.packagespec.json +++ b/PF3/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj","projectName":"PF3","projectPath":"C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\PF3.csproj","outputPath":"C:\\Users\\timot\\RiderProjects\\PF3\\AP-WEB-PF3\\PF3\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[8.0.20, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[6.6.2, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\timot\\.dotnet\\sdk\\8.0.414/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj","projectName":"PF3","projectPath":"/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/PF3.csproj","outputPath":"/home/cernont@stsio.lan/PF3/AP-WEB-PF3/PF3/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"/usr/share/dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[8.0.20, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[6.6.2, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/share/dotnet/sdk/8.0.413/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/PF3/obj/rider.project.model.nuget.info b/PF3/obj/rider.project.model.nuget.info index 5802f29..91d9cda 100644 --- a/PF3/obj/rider.project.model.nuget.info +++ b/PF3/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17594149183386428 \ No newline at end of file +17600145845271387 \ No newline at end of file diff --git a/PF3/obj/rider.project.restore.info b/PF3/obj/rider.project.restore.info index 402017a..2e8ecae 100644 --- a/PF3/obj/rider.project.restore.info +++ b/PF3/obj/rider.project.restore.info @@ -1 +1 @@ -17594150751917634 \ No newline at end of file +17600145998071382 \ No newline at end of file