From 76db2cb8de0668daaed5bdeed6006ecb48c4fd4d Mon Sep 17 00:00:00 2001 From: jboinembalome Date: Fri, 26 Feb 2021 13:03:24 +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/EvaluationDTO.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/EPAServeur/DTO/EvaluationDTO.cs b/EPAServeur/DTO/EvaluationDTO.cs index 9a7d430..9b3213a 100644 --- a/EPAServeur/DTO/EvaluationDTO.cs +++ b/EPAServeur/DTO/EvaluationDTO.cs @@ -56,8 +56,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; } /// /// Gets or Sets Saisies @@ -77,7 +77,7 @@ namespace IO.Swagger.DTO sb.Append(" Id: ").Append(Id).Append("\n"); sb.Append(" Intitule: ").Append(Intitule).Append("\n"); sb.Append(" DateDebut: ").Append(DateDebut).Append("\n"); - sb.Append(" EstCertifie: ").Append(EstCertifie).Append("\n"); + sb.Append(" EstCertifie: ").Append(EstCertifiee).Append("\n"); sb.Append(" Saisies: ").Append(Saisies).Append("\n"); sb.Append("}\n"); return sb.ToString(); @@ -131,9 +131,9 @@ namespace IO.Swagger.DTO DateDebut.Equals(other.DateDebut) ) && ( - EstCertifie == other.EstCertifie || - EstCertifie != null && - EstCertifie.Equals(other.EstCertifie) + EstCertifiee == other.EstCertifiee || + EstCertifiee != null && + EstCertifiee.Equals(other.EstCertifiee) ) && ( Saisies == other.Saisies || @@ -158,8 +158,8 @@ namespace IO.Swagger.DTO hashCode = hashCode * 59 + Intitule.GetHashCode(); if (DateDebut != null) hashCode = hashCode * 59 + DateDebut.GetHashCode(); - if (EstCertifie != null) - hashCode = hashCode * 59 + EstCertifie.GetHashCode(); + if (EstCertifiee != null) + hashCode = hashCode * 59 + EstCertifiee.GetHashCode(); if (Saisies != null) hashCode = hashCode * 59 + Saisies.GetHashCode(); return hashCode;