diff --git a/PyroFetes/Models/Communication.cs b/PyroFetes/Models/Communication.cs index 6faa91a..d7cf112 100644 --- a/PyroFetes/Models/Communication.cs +++ b/PyroFetes/Models/Communication.cs @@ -9,5 +9,4 @@ public class Communication [Required] public string? Email { get; set; } [Required] public string? Meeting { get; set; } - //REL } \ No newline at end of file diff --git a/PyroFetes/Models/Contact.cs b/PyroFetes/Models/Contact.cs index 8b6a6cf..3b0e762 100644 --- a/PyroFetes/Models/Contact.cs +++ b/PyroFetes/Models/Contact.cs @@ -14,7 +14,6 @@ public class Contact [Required] public string? City { get; set; } [Required] public string? Role { get; set; } - //RELATIONS DE CON LA public int CommunicationId { get; set; } public Communication? Communication { get; set; } } \ No newline at end of file diff --git a/PyroFetes/Models/Customer.cs b/PyroFetes/Models/Customer.cs index 31f0203..d158621 100644 --- a/PyroFetes/Models/Customer.cs +++ b/PyroFetes/Models/Customer.cs @@ -7,7 +7,7 @@ public class Customer [Key] public int Id { get; set; } [Required] public string? Note { get; set; } - //Les relations + //Relations public int CustomerTypeId { get; set; } public CustomerType? CustomerType { get; set; } diff --git a/PyroFetes/Models/Show.cs b/PyroFetes/Models/Show.cs index 5ec1804..0713da7 100644 --- a/PyroFetes/Models/Show.cs +++ b/PyroFetes/Models/Show.cs @@ -9,7 +9,7 @@ public class Show [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 + // Link (path/URL/file name) to the pyrotechnic implementation plan [Required, MaxLength(500)] public string? PyrotechnicImplementationPlan { get; set; } diff --git a/PyroFetes/Models/Warehouse.cs b/PyroFetes/Models/Warehouse.cs index 3ce4382..3dd817f 100644 --- a/PyroFetes/Models/Warehouse.cs +++ b/PyroFetes/Models/Warehouse.cs @@ -13,10 +13,7 @@ public class Warehouse [Required] public int ZipCode { get; set; } [Required] public string? City { get; set; } - public List? Materials {get; set;} - - public List? MovementsSource { get; set; } public List? MovementsDestination { get; set; } } \ No newline at end of file