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;