using EPAServeur.Models.SaisieChamp; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.Formation { /// /// Représentation de la participation d’un collaborateur à une formation. /// public class ParticipationFormation { /// /// Id de la participation à la formation /// public long IdParticipationFormation { get; set; } /// /// Date à laquelle la participation a été créée /// public DateTime DateCreation { get; set; } /// /// Indique si le collaborateur a effectué l’évaluation de la formation /// public bool EstEvaluee { get; set; } /// /// Demande de formation qui est lié à la participation d’un collaborateur à une formation /// public DemandeFormation DemandeFormation { get; set; } /// /// Formation qui est lié à la participation d’un collaborateur à une formation /// public Formation Formation { get; set; } /// /// Liste des évaluations qui sont liées à la participation d’un collaborateur à une formation /// public List Evaluation { get; set; } } }