Ajout de l'id de l'agence dans formationDTO

master
Yanaël GRETTE 4 years ago
parent d5ac3fd938
commit a099587a74
  1. 102
      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. * 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 * Generated by: https://github.com/swagger-api/swagger-codegen.git
*/ */
@ -19,100 +19,106 @@ using System.Runtime.Serialization;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace IO.Swagger.DTO namespace IO.Swagger.DTO
{ {
/// <summary> /// <summary>
/// Toutes les informations d&#x27;une formation /// Toutes les informations d&#x27;une formation
/// </summary> /// </summary>
[DataContract] [DataContract]
public partial class FormationDTO : IEquatable<FormationDTO> public partial class FormationDTO : IEquatable<FormationDTO>
{ {
/// <summary> /// <summary>
/// Gets or Sets Id /// Gets or Sets Id
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="id")] [DataMember(Name = "id")]
public int? Id { get; set; } public int? Id { get; set; }
/// <summary> /// <summary>
/// Gets or Sets Intitule /// Gets or Sets Intitule
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="intitule")] [DataMember(Name = "intitule")]
public string Intitule { get; set; } public string Intitule { get; set; }
/// <summary> /// <summary>
/// Gets or Sets Origine /// Gets or Sets Origine
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="origine")] [DataMember(Name = "origine")]
public OrigineFormationDTO Origine { get; set; } public OrigineFormationDTO Origine { get; set; }
/// <summary> /// <summary>
/// Gets or Sets Statut /// Gets or Sets Statut
/// </summary> /// </summary>
[DataMember(Name="statut")] [DataMember(Name = "statut")]
public StatutFormationDTO Statut { get; set; } public StatutFormationDTO Statut { get; set; }
/// <summary>
/// Gets or Sets IdAgence
/// </summary>
[DataMember(Name = "idAgence")]
public int? IdAgence { get; set; }
/// <summary> /// <summary>
/// Gets or Sets DateDebut /// Gets or Sets DateDebut
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="dateDebut")] [DataMember(Name = "dateDebut")]
public DateTime? DateDebut { get; set; } public DateTime? DateDebut { get; set; }
/// <summary> /// <summary>
/// Gets or Sets DateFin /// Gets or Sets DateFin
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="dateFin")] [DataMember(Name = "dateFin")]
public DateTime? DateFin { get; set; } public DateTime? DateFin { get; set; }
/// <summary> /// <summary>
/// Gets or Sets Heure /// Gets or Sets Heure
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="heure")] [DataMember(Name = "heure")]
public decimal? Heure { get; set; } public decimal? Heure { get; set; }
/// <summary> /// <summary>
/// Gets or Sets Jour /// Gets or Sets Jour
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="jour")] [DataMember(Name = "jour")]
public decimal? Jour { get; set; } public decimal? Jour { get; set; }
/// <summary> /// <summary>
/// Gets or Sets Organisme /// Gets or Sets Organisme
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="organisme")] [DataMember(Name = "organisme")]
public string Organisme { get; set; } public string Organisme { get; set; }
/// <summary> /// <summary>
/// Gets or Sets Mode /// Gets or Sets Mode
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="mode")] [DataMember(Name = "mode")]
public ModeFormationDTO Mode { get; set; } public ModeFormationDTO Mode { get; set; }
/// <summary> /// <summary>
/// Gets or Sets Type /// Gets or Sets Type
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="type")] [DataMember(Name = "type")]
public TypeFormationDTO Type { get; set; } public TypeFormationDTO Type { get; set; }
/// <summary> /// <summary>
/// Gets or Sets EstCertifie /// Gets or Sets EstCertifie
/// </summary> /// </summary>
[Required] [Required]
[DataMember(Name="estCertifie")] [DataMember(Name = "estCertifie")]
public bool? EstCertifie { get; set; } public bool? EstCertifie { get; set; }
/// <summary> /// <summary>
/// Gets or Sets ParticipantsFormation /// Gets or Sets ParticipantsFormation
/// </summary> /// </summary>
[DataMember(Name="participantsFormation")] [DataMember(Name = "participantsFormation")]
public List<FormationDTOParticipantsFormation> ParticipantsFormation { get; set; } public List<FormationDTOParticipantsFormation> ParticipantsFormation { get; set; }
/// <summary> /// <summary>
@ -127,6 +133,7 @@ namespace IO.Swagger.DTO
sb.Append(" Intitule: ").Append(Intitule).Append("\n"); sb.Append(" Intitule: ").Append(Intitule).Append("\n");
sb.Append(" Origine: ").Append(Origine).Append("\n"); sb.Append(" Origine: ").Append(Origine).Append("\n");
sb.Append(" Statut: ").Append(Statut).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(" DateDebut: ").Append(DateDebut).Append("\n");
sb.Append(" DateFin: ").Append(DateFin).Append("\n"); sb.Append(" DateFin: ").Append(DateFin).Append("\n");
sb.Append(" Heure: ").Append(Heure).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(null, other)) return false;
if (ReferenceEquals(this, other)) return true; if (ReferenceEquals(this, other)) return true;
return return
( (
Id == other.Id || Id == other.Id ||
Id != null && Id != null &&
Id.Equals(other.Id) Id.Equals(other.Id)
) && ) &&
( (
Intitule == other.Intitule || Intitule == other.Intitule ||
Intitule != null && Intitule != null &&
Intitule.Equals(other.Intitule) Intitule.Equals(other.Intitule)
) && ) &&
( (
Origine == other.Origine || Origine == other.Origine ||
Origine != null && Origine != null &&
Origine.Equals(other.Origine) Origine.Equals(other.Origine)
) && ) &&
( (
Statut == other.Statut || Statut == other.Statut ||
Statut != null && Statut != null &&
Statut.Equals(other.Statut) Statut.Equals(other.Statut)
) && ) &&
(
IdAgence == other.IdAgence ||
IdAgence != null &&
IdAgence.Equals(other.IdAgence)
) &&
( (
DateDebut == other.DateDebut || DateDebut == other.DateDebut ||
DateDebut != null && DateDebut != null &&
DateDebut.Equals(other.DateDebut) DateDebut.Equals(other.DateDebut)
) && ) &&
( (
DateFin == other.DateFin || DateFin == other.DateFin ||
DateFin != null && DateFin != null &&
DateFin.Equals(other.DateFin) DateFin.Equals(other.DateFin)
) && ) &&
( (
Heure == other.Heure || Heure == other.Heure ||
Heure != null && Heure != null &&
Heure.Equals(other.Heure) Heure.Equals(other.Heure)
) && ) &&
( (
Jour == other.Jour || Jour == other.Jour ||
Jour != null && Jour != null &&
Jour.Equals(other.Jour) Jour.Equals(other.Jour)
) && ) &&
( (
Organisme == other.Organisme || Organisme == other.Organisme ||
Organisme != null && Organisme != null &&
Organisme.Equals(other.Organisme) Organisme.Equals(other.Organisme)
) && ) &&
( (
Mode == other.Mode || Mode == other.Mode ||
Mode != null && Mode != null &&
Mode.Equals(other.Mode) Mode.Equals(other.Mode)
) && ) &&
( (
Type == other.Type || Type == other.Type ||
Type != null && Type != null &&
Type.Equals(other.Type) Type.Equals(other.Type)
) && ) &&
( (
EstCertifie == other.EstCertifie || EstCertifie == other.EstCertifie ||
EstCertifie != null && EstCertifie != null &&
EstCertifie.Equals(other.EstCertifie) EstCertifie.Equals(other.EstCertifie)
) && ) &&
( (
ParticipantsFormation == other.ParticipantsFormation || ParticipantsFormation == other.ParticipantsFormation ||
ParticipantsFormation != null && ParticipantsFormation != null &&
@ -249,38 +261,40 @@ namespace IO.Swagger.DTO
{ {
var hashCode = 41; var hashCode = 41;
// Suitable nullity checks etc, of course :) // Suitable nullity checks etc, of course :)
if (Id != null) if (Id != null)
hashCode = hashCode * 59 + Id.GetHashCode(); hashCode = hashCode * 59 + Id.GetHashCode();
if (Intitule != null) if (Intitule != null)
hashCode = hashCode * 59 + Intitule.GetHashCode(); hashCode = hashCode * 59 + Intitule.GetHashCode();
if (Origine != null) if (Origine != null)
hashCode = hashCode * 59 + Origine.GetHashCode(); hashCode = hashCode * 59 + Origine.GetHashCode();
if (Statut != null) if (Statut != null)
hashCode = hashCode * 59 + Statut.GetHashCode(); hashCode = hashCode * 59 + Statut.GetHashCode();
if (DateDebut != null) if (IdAgence != null)
hashCode = hashCode * 59 + IdAgence.GetHashCode();
if (DateDebut != null)
hashCode = hashCode * 59 + DateDebut.GetHashCode(); hashCode = hashCode * 59 + DateDebut.GetHashCode();
if (DateFin != null) if (DateFin != null)
hashCode = hashCode * 59 + DateFin.GetHashCode(); hashCode = hashCode * 59 + DateFin.GetHashCode();
if (Heure != null) if (Heure != null)
hashCode = hashCode * 59 + Heure.GetHashCode(); hashCode = hashCode * 59 + Heure.GetHashCode();
if (Jour != null) if (Jour != null)
hashCode = hashCode * 59 + Jour.GetHashCode(); hashCode = hashCode * 59 + Jour.GetHashCode();
if (Organisme != null) if (Organisme != null)
hashCode = hashCode * 59 + Organisme.GetHashCode(); hashCode = hashCode * 59 + Organisme.GetHashCode();
if (Mode != null) if (Mode != null)
hashCode = hashCode * 59 + Mode.GetHashCode(); hashCode = hashCode * 59 + Mode.GetHashCode();
if (Type != null) if (Type != null)
hashCode = hashCode * 59 + Type.GetHashCode(); hashCode = hashCode * 59 + Type.GetHashCode();
if (EstCertifie != null) if (EstCertifie != null)
hashCode = hashCode * 59 + EstCertifie.GetHashCode(); hashCode = hashCode * 59 + EstCertifie.GetHashCode();
if (ParticipantsFormation != null) if (ParticipantsFormation != null)
hashCode = hashCode * 59 + ParticipantsFormation.GetHashCode(); hashCode = hashCode * 59 + ParticipantsFormation.GetHashCode();
return hashCode; return hashCode;
} }
} }
#region Operators #region Operators
#pragma warning disable 1591 #pragma warning disable 1591
public static bool operator ==(FormationDTO left, FormationDTO right) public static bool operator ==(FormationDTO left, FormationDTO right)
{ {
@ -292,7 +306,7 @@ namespace IO.Swagger.DTO
return !Equals(left, right); return !Equals(left, right);
} }
#pragma warning restore 1591 #pragma warning restore 1591
#endregion Operators #endregion Operators
} }
} }

Loading…
Cancel
Save