/// <summary>
 /// When human want's to interact with the facility, he will first join the facility
 /// </summary>
 /// <param name="human"></param>
 public void JoinFacility(Human human)
 {
     CurrentHumans.Add(human);
 }