SorteUtilisateur Dans (SorteUtilisateurApplication, SorteUtilisateurEmploye);
La signification des valeurs est la suivante :
Variable
/******/
	U : Nul Ou IUtilisateur;
   A : Nul Ou IApplication;
   E : Nul Ou IEmploye;
Principal
/*******/
Debut
...
Selon U.Sorte Faire
   Cas Pour SorteUtilisateurApplication Faire
   /* Il s'agit d'une application informatique ou assimilee. */ 
   
	   A=IApplication(U);
      ...
   
   Fin Cas
   Cas Pour SorteUtilisateurEmploye Faire
   /* Il s'agit d'un employe travaillant pour le compte de l'entreprise. */ 
   
	   E=IEmploye(U);
	   ...
   
   Fin Cas
Fin Selon
...
Fin Principal
| - | - | - | - | - | - | - | - | - |