Ejemplo n.º 1
0
        private void cmdRegistrarScooter_Click(object sender, EventArgs e)
        {
            try
            {
                string station_id = "";

                if (rbtnUso.Checked || rbtnMantenimiento.Checked || rbtnDisponible.Checked)
                {
                    if (rbtnDisponible.Checked)
                    {
                        state = ScooterState.available;
                        cboxEstacion.Show();
                        if (cboxEstacion.SelectedItem == null)
                        {
                            station_id = "";
                        }
                        else
                        {
                            station_id = cboxEstacion.SelectedItem.ToString();
                        }
                    }
                    else if (rbtnMantenimiento.Checked)
                    {
                        state = ScooterState.inMaintenance;
                    }
                    else
                    {
                        state = ScooterState.inUse;
                    }

                    service.RegisterScooter(registerDate.Value, state, station_id);
                    MessageBox.Show(this, "Scooter registrado con exito", "", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    rbtnDisponible.Checked    = false;
                    rbtnMantenimiento.Checked = false;
                    rbtnUso.Checked           = false;
                    cboxEstacion.Text         = "";
                }
                else
                {
                    MessageBox.Show(this, "Debe seleccionar el estado del scooter", "", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            catch (ServiceException serviceException)
            {
                MessageBox.Show(this, serviceException.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }