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.
|
|
|
|
using EPAServeur.Models.EP;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EPAServeur.Models.Formation
|
|
|
|
|
{
|
|
|
|
|
public class DemandeFormation
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public DateTime DateDemande { get; set; }
|
|
|
|
|
public bool DemandeRH { get; set; }
|
|
|
|
|
public bool? Reponse { get; set; }
|
|
|
|
|
public string CommentaireRefus { get; set; }
|
|
|
|
|
public DateTime DateDerniereReponse { get; set; }
|
|
|
|
|
public Ep Ep { get; set; }
|
|
|
|
|
public ParticipationFormation ParticipationFormation { get; set; }
|
|
|
|
|
public OrigineFormation OrigineFormation { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|