/// <summary>
 /// Add patient that arrived to the queue
 /// </summary>
 /// <param name="u"></param>
 public void AddPatient(Utente u)
 {
     queue.Enqueue(u);
 }