Renommage de la propriété EstCertifie

develop
jboinembalome 4 years ago
parent 9949eee8d2
commit 76db2cb8de
  1. 16
      EPAServeur/DTO/EvaluationDTO.cs

@ -56,8 +56,8 @@ namespace IO.Swagger.DTO
/// </summary>
/// <value>Indique si la formation est certifiée ou non</value>
[Required]
[DataMember(Name="estCertifie")]
public bool? EstCertifie { get; set; }
[DataMember(Name="estCertifiee")]
public bool? EstCertifiee { get; set; }
/// <summary>
/// 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;

Loading…
Cancel
Save