From 695562391a90bfc4429979fe26884cccbe9d9f53 Mon Sep 17 00:00:00 2001 From: jboinembalome Date: Wed, 3 Feb 2021 08:56:01 +0100 Subject: [PATCH] =?UTF-8?q?Renommage=20de=20la=20propri=C3=A9t=C3=A9=20Est?= =?UTF-8?q?Certifie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EPAServeur/DTO/FormationDetailsDTO.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/EPAServeur/DTO/FormationDetailsDTO.cs b/EPAServeur/DTO/FormationDetailsDTO.cs index 0a269c1..6d818e9 100644 --- a/EPAServeur/DTO/FormationDetailsDTO.cs +++ b/EPAServeur/DTO/FormationDetailsDTO.cs @@ -92,8 +92,8 @@ namespace IO.Swagger.DTO /// /// Indique si la formation est certifiée ou non [Required] - [DataMember(Name="estCertifie")] - public bool? EstCertifie { get; set; } + [DataMember(Name="estCertifiee")] + public bool? EstCertifiee { get; set; } /// /// Returns the string presentation of the object @@ -111,7 +111,7 @@ namespace IO.Swagger.DTO sb.Append(" Organisme: ").Append(Organisme).Append("\n"); sb.Append(" NbParticipations: ").Append(NbParticipations).Append("\n"); sb.Append(" Origine: ").Append(Origine).Append("\n"); - sb.Append(" EstCertifie: ").Append(EstCertifie).Append("\n"); + sb.Append(" EstCertifie: ").Append(EstCertifiee).Append("\n"); sb.Append("}\n"); return sb.ToString(); } @@ -189,9 +189,9 @@ namespace IO.Swagger.DTO Origine.Equals(other.Origine) ) && ( - EstCertifie == other.EstCertifie || - EstCertifie != null && - EstCertifie.Equals(other.EstCertifie) + EstCertifiee == other.EstCertifiee || + EstCertifiee != null && + EstCertifiee.Equals(other.EstCertifiee) ); } @@ -221,8 +221,8 @@ namespace IO.Swagger.DTO hashCode = hashCode * 59 + NbParticipations.GetHashCode(); if (Origine != null) hashCode = hashCode * 59 + Origine.GetHashCode(); - if (EstCertifie != null) - hashCode = hashCode * 59 + EstCertifie.GetHashCode(); + if (EstCertifiee != null) + hashCode = hashCode * 59 + EstCertifiee.GetHashCode(); return hashCode; } }