public void LookSalarie(UIElement uIElement, Personne salarieToLook)
 {
     this.progressBarMainWindow.IsIndeterminate = true;
     this.changementTexteStatusBar("Affichage d'un salarié en cours ...");
     Personne salarie = ((ListeSalarieControl)uIElement).Look(salarieToLook);
     this.progressBarMainWindow.IsIndeterminate = false;
     this.changementTexteStatusBar("Affichage d'un salarié terminé.");
 }
 public void LookContacts(UIElement uIElement, Personne personneToLook)
 {
     ((ListeContactsControl)uIElement).Look(personneToLook);
 }