private string p_typePerson; // Eleve ou Prof #endregion Fields #region Constructors /// <summary> /// Constructeur Person /// </summary> public Person() { p_typeElement = Constantes.cstIndividu; p_isAbsent = Constantes.cstNon; p_isPassed = false; p_listPhoto = new List<FilePhoto>(); p_infoPdv = new InfoPdV(); p_isPoseB = false; }
/// <summary> /// Constructeur de l'élément Group /// </summary> public Group() { p_typeElement = Constantes.cstGroup; p_isPassed = false; p_listPhoto = new List<FilePhoto>(); p_infosPdv = new InfoPdV(); p_isPoseB = false; }