diff --git a/DTO/FormationDTO.cs b/DTO/FormationDTO.cs index c6c48b9..eb66ad4 100644 --- a/DTO/FormationDTO.cs +++ b/DTO/FormationDTO.cs @@ -3,7 +3,7 @@ * * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * - * OpenAPI spec version: 1.3.1 + * OpenAPI spec version: 1.3.2 * * Generated by: https://github.com/swagger-api/swagger-codegen.git */ @@ -19,100 +19,106 @@ using System.Runtime.Serialization; using Newtonsoft.Json; namespace IO.Swagger.DTO -{ +{ /// /// Toutes les informations d'une formation /// [DataContract] public partial class FormationDTO : IEquatable - { + { /// /// Gets or Sets Id /// [Required] - [DataMember(Name="id")] + [DataMember(Name = "id")] public int? Id { get; set; } /// /// Gets or Sets Intitule /// [Required] - [DataMember(Name="intitule")] + [DataMember(Name = "intitule")] public string Intitule { get; set; } /// /// Gets or Sets Origine /// [Required] - [DataMember(Name="origine")] + [DataMember(Name = "origine")] public OrigineFormationDTO Origine { get; set; } /// /// Gets or Sets Statut /// - [DataMember(Name="statut")] + [DataMember(Name = "statut")] public StatutFormationDTO Statut { get; set; } + /// + /// Gets or Sets IdAgence + /// + [DataMember(Name = "idAgence")] + public int? IdAgence { get; set; } + /// /// Gets or Sets DateDebut /// [Required] - [DataMember(Name="dateDebut")] + [DataMember(Name = "dateDebut")] public DateTime? DateDebut { get; set; } /// /// Gets or Sets DateFin /// [Required] - [DataMember(Name="dateFin")] + [DataMember(Name = "dateFin")] public DateTime? DateFin { get; set; } /// /// Gets or Sets Heure /// [Required] - [DataMember(Name="heure")] + [DataMember(Name = "heure")] public decimal? Heure { get; set; } /// /// Gets or Sets Jour /// [Required] - [DataMember(Name="jour")] + [DataMember(Name = "jour")] public decimal? Jour { get; set; } /// /// Gets or Sets Organisme /// [Required] - [DataMember(Name="organisme")] + [DataMember(Name = "organisme")] public string Organisme { get; set; } /// /// Gets or Sets Mode /// [Required] - [DataMember(Name="mode")] + [DataMember(Name = "mode")] public ModeFormationDTO Mode { get; set; } /// /// Gets or Sets Type /// [Required] - [DataMember(Name="type")] + [DataMember(Name = "type")] public TypeFormationDTO Type { get; set; } /// /// Gets or Sets EstCertifie /// [Required] - [DataMember(Name="estCertifie")] + [DataMember(Name = "estCertifie")] public bool? EstCertifie { get; set; } /// /// Gets or Sets ParticipantsFormation /// - [DataMember(Name="participantsFormation")] + [DataMember(Name = "participantsFormation")] public List ParticipantsFormation { get; set; } /// @@ -127,6 +133,7 @@ namespace IO.Swagger.DTO sb.Append(" Intitule: ").Append(Intitule).Append("\n"); sb.Append(" Origine: ").Append(Origine).Append("\n"); sb.Append(" Statut: ").Append(Statut).Append("\n"); + sb.Append(" IdAgence: ").Append(IdAgence).Append("\n"); sb.Append(" DateDebut: ").Append(DateDebut).Append("\n"); sb.Append(" DateFin: ").Append(DateFin).Append("\n"); sb.Append(" Heure: ").Append(Heure).Append("\n"); @@ -171,67 +178,72 @@ namespace IO.Swagger.DTO if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; - return + return ( Id == other.Id || Id != null && Id.Equals(other.Id) - ) && + ) && ( Intitule == other.Intitule || Intitule != null && Intitule.Equals(other.Intitule) - ) && + ) && ( Origine == other.Origine || Origine != null && Origine.Equals(other.Origine) - ) && + ) && ( Statut == other.Statut || Statut != null && Statut.Equals(other.Statut) - ) && + ) && + ( + IdAgence == other.IdAgence || + IdAgence != null && + IdAgence.Equals(other.IdAgence) + ) && ( DateDebut == other.DateDebut || DateDebut != null && DateDebut.Equals(other.DateDebut) - ) && + ) && ( DateFin == other.DateFin || DateFin != null && DateFin.Equals(other.DateFin) - ) && + ) && ( Heure == other.Heure || Heure != null && Heure.Equals(other.Heure) - ) && + ) && ( Jour == other.Jour || Jour != null && Jour.Equals(other.Jour) - ) && + ) && ( Organisme == other.Organisme || Organisme != null && Organisme.Equals(other.Organisme) - ) && + ) && ( Mode == other.Mode || Mode != null && Mode.Equals(other.Mode) - ) && + ) && ( Type == other.Type || Type != null && Type.Equals(other.Type) - ) && + ) && ( EstCertifie == other.EstCertifie || EstCertifie != null && EstCertifie.Equals(other.EstCertifie) - ) && + ) && ( ParticipantsFormation == other.ParticipantsFormation || ParticipantsFormation != null && @@ -249,38 +261,40 @@ namespace IO.Swagger.DTO { var hashCode = 41; // Suitable nullity checks etc, of course :) - if (Id != null) + if (Id != null) hashCode = hashCode * 59 + Id.GetHashCode(); - if (Intitule != null) + if (Intitule != null) hashCode = hashCode * 59 + Intitule.GetHashCode(); - if (Origine != null) + if (Origine != null) hashCode = hashCode * 59 + Origine.GetHashCode(); - if (Statut != null) + if (Statut != null) hashCode = hashCode * 59 + Statut.GetHashCode(); - if (DateDebut != null) + if (IdAgence != null) + hashCode = hashCode * 59 + IdAgence.GetHashCode(); + if (DateDebut != null) hashCode = hashCode * 59 + DateDebut.GetHashCode(); - if (DateFin != null) + if (DateFin != null) hashCode = hashCode * 59 + DateFin.GetHashCode(); - if (Heure != null) + if (Heure != null) hashCode = hashCode * 59 + Heure.GetHashCode(); - if (Jour != null) + if (Jour != null) hashCode = hashCode * 59 + Jour.GetHashCode(); - if (Organisme != null) + if (Organisme != null) hashCode = hashCode * 59 + Organisme.GetHashCode(); - if (Mode != null) + if (Mode != null) hashCode = hashCode * 59 + Mode.GetHashCode(); - if (Type != null) + if (Type != null) hashCode = hashCode * 59 + Type.GetHashCode(); - if (EstCertifie != null) + if (EstCertifie != null) hashCode = hashCode * 59 + EstCertifie.GetHashCode(); - if (ParticipantsFormation != null) + if (ParticipantsFormation != null) hashCode = hashCode * 59 + ParticipantsFormation.GetHashCode(); return hashCode; } } #region Operators - #pragma warning disable 1591 +#pragma warning disable 1591 public static bool operator ==(FormationDTO left, FormationDTO right) { @@ -292,7 +306,7 @@ namespace IO.Swagger.DTO return !Equals(left, right); } - #pragma warning restore 1591 +#pragma warning restore 1591 #endregion Operators } }