Exemplo n.º 1
0
        // Updates/Shows all the customers with seat assigned
        private void btnShowAllSeats(object sender, EventArgs e)
        {
            // ALWAYS guarantees an empty box.
            rtxtboxSeated.ResetText();

            // builds the customers with seats assigneds
            rtxtboxSeated.AppendText(AirplaneService.SeatedCustomers());
        }