Renommage de la propriété EstCertifie

develop
jboinembalome 4 years ago
parent d08a86bb9b
commit 695562391a
  1. 16
      EPAServeur/DTO/FormationDetailsDTO.cs

@ -92,8 +92,8 @@ namespace IO.Swagger.DTO
/// </summary> /// </summary>
/// <value>Indique si la formation est certifiée ou non</value> /// <value>Indique si la formation est certifiée ou non</value>
[Required] [Required]
[DataMember(Name="estCertifie")] [DataMember(Name="estCertifiee")]
public bool? EstCertifie { get; set; } public bool? EstCertifiee { get; set; }
/// <summary> /// <summary>
/// Returns the string presentation of the object /// Returns the string presentation of the object
@ -111,7 +111,7 @@ namespace IO.Swagger.DTO
sb.Append(" Organisme: ").Append(Organisme).Append("\n"); sb.Append(" Organisme: ").Append(Organisme).Append("\n");
sb.Append(" NbParticipations: ").Append(NbParticipations).Append("\n"); sb.Append(" NbParticipations: ").Append(NbParticipations).Append("\n");
sb.Append(" Origine: ").Append(Origine).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"); sb.Append("}\n");
return sb.ToString(); return sb.ToString();
} }
@ -189,9 +189,9 @@ namespace IO.Swagger.DTO
Origine.Equals(other.Origine) Origine.Equals(other.Origine)
) && ) &&
( (
EstCertifie == other.EstCertifie || EstCertifiee == other.EstCertifiee ||
EstCertifie != null && EstCertifiee != null &&
EstCertifie.Equals(other.EstCertifie) EstCertifiee.Equals(other.EstCertifiee)
); );
} }
@ -221,8 +221,8 @@ namespace IO.Swagger.DTO
hashCode = hashCode * 59 + NbParticipations.GetHashCode(); hashCode = hashCode * 59 + NbParticipations.GetHashCode();
if (Origine != null) if (Origine != null)
hashCode = hashCode * 59 + Origine.GetHashCode(); hashCode = hashCode * 59 + Origine.GetHashCode();
if (EstCertifie != null) if (EstCertifiee != null)
hashCode = hashCode * 59 + EstCertifie.GetHashCode(); hashCode = hashCode * 59 + EstCertifiee.GetHashCode();
return hashCode; return hashCode;
} }
} }

Loading…
Cancel
Save