You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Digitalisation_EPA_Serveur/EPAServeur/Models/Formation/Formation.cs

90 lines
2.0 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Models.Formation
{
/// <summary>
/// Formation pour les collaborateurs.
/// </summary>
public class Formation
{
/// <summary>
/// Id de la formation
/// </summary>
public long IdFormation { get; set; }
/// <summary>
/// Intitulé de la formation
/// </summary>
public string Intitule { get; set; }
/// <summary>
/// Id de l’agence de la RH qui a créé la formation
/// </summary>
public long IdAgence { get; set; }
/// <summary>
///
/// </summary>
public DateTime DateDebut { get; set; }
/// <summary>
///
/// </summary>
public DateTime DateFin { get; set; }
/// <summary>
/// Nombre de jours total de formation
/// </summary>
public int Jour { get; set; }
/// <summary>
/// Nombre d’heure total de formation
/// </summary>
public int Heure { get; set; }
/// <summary>
/// Organisme en charge d’effectuer la formation
/// </summary>
public string Organisme { get; set; }
/// <summary>
/// Indique qu’il s’agit d’une formation certifiée ou non
/// </summary>
public bool EstCertifiee { get; set; }
/// <summary>
/// Indique que la formation a bien été effectuée ou non
/// </summary>
public bool EstRealisee { get; set; }
/// <summary>
/// Statut de formation qui est lié à la formation
/// </summary>
public StatutFormation Statut { get; set; }
/// <summary>
/// Origine de formation qui est liée à la formation
/// </summary>
public OrigineFormation Origine { get; set; }
/// <summary>
/// Mode de formation qui est lié à la formation
/// </summary>
public ModeFormation ModeFormation { get; set; }
/// <summary>
/// Type de formation qui est lié à la formation
/// </summary>
public TypeFormation TypeFormation { get; set; }
/// <summary>
/// Liste des participations qui sont liées à la formation
/// </summary>
public List<ParticipationFormation> ParticipationsFormation { get; set; }
}
}