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 System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EPAServeur.Models.Formation
|
|
|
|
|
{
|
|
|
|
|
public class Formation
|
|
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public string Intitule { get; set; }
|
|
|
|
|
public long IdAgence { get; set; }
|
|
|
|
|
public DateTime DateDebut { get; set; }
|
|
|
|
|
public DateTime DateFin { get; set; }
|
|
|
|
|
public int Jour { get; set; }
|
|
|
|
|
public int Heure { get; set; }
|
|
|
|
|
public string Organisme { get; set; }
|
|
|
|
|
public bool EstCertifiee { get; set; }
|
|
|
|
|
public StatutFormation Statut { get; set; }
|
|
|
|
|
public OrigineFormation Origine { get; set; }
|
|
|
|
|
public ModeFormation ModeFormation { get; set; }
|
|
|
|
|
public TypeFormation TypeFormation { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|