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.
*
* 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
{
{
/// <summary>
/// Toutes les informations d&#x27;une formation
/// </summary>
[DataContract]
public partial class FormationDTO : IEquatable<FormationDTO>
{
{
/// <summary>
/// Gets or Sets Id
/// </summary>
[Required]
[DataMember(Name="id")]
[DataMember(Name = "id")]
public int? Id { get; set; }
/// <summary>
/// Gets or Sets Intitule
/// </summary>
[Required]
[DataMember(Name="intitule")]
[DataMember(Name = "intitule")]
public string Intitule { get; set; }
/// <summary>
/// Gets or Sets Origine
/// </summary>
[Required]
[DataMember(Name="origine")]
[DataMember(Name = "origine")]
public OrigineFormationDTO Origine { get; set; }
/// <summary>
/// Gets or Sets Statut
/// </summary>
[DataMember(Name="statut")]
[DataMember(Name = "statut")]
public StatutFormationDTO Statut { get; set; }
/// <summary>
/// Gets or Sets IdAgence
/// </summary>
[DataMember(Name = "idAgence")]
public int? IdAgence { get; set; }
/// <summary>
/// Gets or Sets DateDebut
/// </summary>
[Required]
[DataMember(Name="dateDebut")]
[DataMember(Name = "dateDebut")]
public DateTime? DateDebut { get; set; }
/// <summary>
/// Gets or Sets DateFin
/// </summary>
[Required]
[DataMember(Name="dateFin")]
[DataMember(Name = "dateFin")]
public DateTime? DateFin { get; set; }
/// <summary>
/// Gets or Sets Heure
/// </summary>
[Required]
[DataMember(Name="heure")]
[DataMember(Name = "heure")]
public decimal? Heure { get; set; }
/// <summary>
/// Gets or Sets Jour
/// </summary>
[Required]
[DataMember(Name="jour")]
[DataMember(Name = "jour")]
public decimal? Jour { get; set; }
/// <summary>
/// Gets or Sets Organisme
/// </summary>
[Required]
[DataMember(Name="organisme")]
[DataMember(Name = "organisme")]
public string Organisme { get; set; }
/// <summary>
/// Gets or Sets Mode
/// </summary>
[Required]
[DataMember(Name="mode")]
[DataMember(Name = "mode")]
public ModeFormationDTO Mode { get; set; }
/// <summary>
/// Gets or Sets Type
/// </summary>
[Required]
[DataMember(Name="type")]
[DataMember(Name = "type")]
public TypeFormationDTO Type { get; set; }
/// <summary>
/// Gets or Sets EstCertifie
/// </summary>
[Required]
[DataMember(Name="estCertifie")]
[DataMember(Name = "estCertifie")]
public bool? EstCertifie { get; set; }
/// <summary>
/// Gets or Sets ParticipantsFormation
/// </summary>
[DataMember(Name="participantsFormation")]
[DataMember(Name = "participantsFormation")]
public List<FormationDTOParticipantsFormation> ParticipantsFormation { get; set; }
/// <summary>
@ -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
}
}

Loading…
Cancel
Save