Récupération du nom et du prénom de l'assistant qui a écrit la note

develop
Yanaël GRETTE 4 years ago
parent 5af948d0ea
commit 6197d6d0a6
  1. 33
      EPAServeur/DTO/CommentaireAssistantDTO.cs
  2. 6
      EPAServeur/Services/EpDetailsService.cs
  3. 3
      EPAServeur/Services/TransformDTO.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.6 * OpenAPI spec version: 1.3.7
* *
* Generated by: https://github.com/swagger-api/swagger-codegen.git * Generated by: https://github.com/swagger-api/swagger-codegen.git
*/ */
@ -37,8 +37,15 @@ namespace IO.Swagger.DTO
/// Id de l'assistant qui a écrit le commentaire /// Id de l'assistant qui a écrit le commentaire
/// </summary> /// </summary>
/// <value>Id de l&#x27;assistant qui a écrit le commentaire</value> /// <value>Id de l&#x27;assistant qui a écrit le commentaire</value>
[DataMember(Name="idAssistante")] [Required]
public Guid? IdAssistante { get; set; } [DataMember(Name = "idAssistant")]
public Guid? IdAssistant { get; set; }
/// <summary>
/// Gets or Sets Assistant
/// </summary>
[DataMember(Name = "assistant")]
public string Assistant { get; set; }
/// <summary> /// <summary>
/// Le commentaire de l’assistant /// Le commentaire de l’assistant
@ -57,7 +64,8 @@ namespace IO.Swagger.DTO
var sb = new StringBuilder(); var sb = new StringBuilder();
sb.Append("class CommentaireAssistantDTO {\n"); sb.Append("class CommentaireAssistantDTO {\n");
sb.Append(" Id: ").Append(Id).Append("\n"); sb.Append(" Id: ").Append(Id).Append("\n");
sb.Append(" IdAssistante: ").Append(IdAssistante).Append("\n"); sb.Append(" IdAssistant: ").Append(IdAssistant).Append("\n");
sb.Append(" Assistant: ").Append(Assistant).Append("\n");
sb.Append(" Commentaire: ").Append(Commentaire).Append("\n"); sb.Append(" Commentaire: ").Append(Commentaire).Append("\n");
sb.Append("}\n"); sb.Append("}\n");
return sb.ToString(); return sb.ToString();
@ -101,9 +109,14 @@ namespace IO.Swagger.DTO
Id.Equals(other.Id) Id.Equals(other.Id)
) && ) &&
( (
IdAssistante == other.IdAssistante || IdAssistant == other.IdAssistant ||
IdAssistante != null && IdAssistant != null &&
IdAssistante.Equals(other.IdAssistante) IdAssistant.Equals(other.IdAssistant)
) &&
(
Assistant == other.Assistant ||
Assistant != null &&
Assistant.Equals(other.Assistant)
) && ) &&
( (
Commentaire == other.Commentaire || Commentaire == other.Commentaire ||
@ -124,8 +137,10 @@ namespace IO.Swagger.DTO
// 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 (IdAssistante != null) if (IdAssistant != null)
hashCode = hashCode * 59 + IdAssistante.GetHashCode(); hashCode = hashCode * 59 + IdAssistant.GetHashCode();
if (Assistant != null)
hashCode = hashCode * 59 + Assistant.GetHashCode();
if (Commentaire != null) if (Commentaire != null)
hashCode = hashCode * 59 + Commentaire.GetHashCode(); hashCode = hashCode * 59 + Commentaire.GetHashCode();
return hashCode; return hashCode;

@ -38,8 +38,10 @@ namespace EPAServeur.Services
throw new EpNotFoundException(); throw new EpNotFoundException();
//ajouter tous les guids liés à l'EP et aux attributs de l'EP //ajouter tous les guids liés à l'EP et aux attributs de l'EP
List<Guid?> guids = new List<Guid?>(); List<Guid?> guids = new List<Guid?>
guids.Add(ep.IdCollaborateur); {
ep.IdCollaborateur
};
if (ep.IdReferent.HasValue) if (ep.IdReferent.HasValue)
guids.Add(ep.IdCollaborateur); guids.Add(ep.IdCollaborateur);
if (ep.Participants != null && ep.Participants.Any()) if (ep.Participants != null && ep.Participants.Any())

@ -225,7 +225,8 @@ namespace EPAServeur.Services
{ {
Commentaire = ca.Commentaire, Commentaire = ca.Commentaire,
Id = ca.IdCommentaireAssistant, Id = ca.IdCommentaireAssistant,
IdAssistante = ca.IdAssistant IdAssistant = ca.IdAssistant,
Assistant = c.Nom + " " + c.Prenom
}); });
} }
} }

Loading…
Cancel
Save