|
|
@@ -765,10 +765,6 @@ namespace CG67.FicheCollege.Domaine
|
|
|
return retour;
|
|
|
}
|
|
|
}
|
|
|
- /// <summary>
|
|
|
- /// retourne le gestionnaire de l'établissement
|
|
|
- /// </summary>
|
|
|
- ///
|
|
|
|
|
|
public string PrincipalAdjointEmail
|
|
|
{
|
|
|
@@ -782,7 +778,33 @@ namespace CG67.FicheCollege.Domaine
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public string PrincipalAdjoint2
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ string retour = string.Empty;
|
|
|
+ foreach (Contact cont in Contacts)
|
|
|
+ if (cont.Fonction.ToLower() == "principal adjoint 2")
|
|
|
+ retour = cont.Civilite + " " + Utile.formatStringPrenom(cont.Prenom) + " " + cont.Nom.ToUpper();
|
|
|
+ return retour;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public string PrincipalAdjoint2Email
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ string retour = string.Empty;
|
|
|
+ foreach (Contact cont in Contacts)
|
|
|
+ if (cont.Fonction.ToLower() == "principal adjoint 2")
|
|
|
+ retour = cont.Email;
|
|
|
+ return retour;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// retourne le gestionnaire de l'établissement
|
|
|
+ /// </summary>
|
|
|
public string Gestionnaire
|
|
|
{
|
|
|
get
|