Ajout de l'id de l'agence dans formationDTO

master
Yanaël GRETTE 4 years ago
parent d5ac3fd938
commit a099587a74
  1. 46
      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
*/ */
@ -30,89 +30,95 @@ namespace IO.Swagger.DTO
/// 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");
@ -192,6 +199,11 @@ namespace IO.Swagger.DTO
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 &&
@ -257,6 +269,8 @@ namespace IO.Swagger.DTO
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 (IdAgence != null)
hashCode = hashCode * 59 + IdAgence.GetHashCode();
if (DateDebut != null) if (DateDebut != null)
hashCode = hashCode * 59 + DateDebut.GetHashCode(); hashCode = hashCode * 59 + DateDebut.GetHashCode();
if (DateFin != null) if (DateFin != null)
@ -280,7 +294,7 @@ namespace IO.Swagger.DTO
} }
#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