/// <summary>
 /// Remove um utente da lista de utentes
 /// </summary>
 /// <param name="u">Utente</param>
 /// <return> a função RemoveUtente (remove o utente da lista)></returns>
 public static bool RemoverUtente(Utente u)
 {
     try
     {
         return(Utentes.RemoveUtente(u));
     }
     catch (InsereException e)
     {
         throw e;
     }
 }