public void HandleReceivedDestinationRequest(object sender, FloorEventArgs e)
 {
     this.destination.Text = e.Floor.ToString();
 }
 private void PickUp(FloorEventArgs floorEventArgs)
 {
 }
 public void HandleReachedFloor(object sender, FloorEventArgs e)
 {
     this.lastFloor.Text = e.Floor.ToString();
 }
 public void OnReceivedDestinationRequest(FloorEventArgs floorEventArgs)
 {
     if (this.ReceivedDestinationRequest != null)
     {
         this.ReceivedDestinationRequest(this, floorEventArgs);
     }
 }