Exemplo n.º 1
0
        private void Form_Load(object sender, EventArgs e)
        {
            try
            {
                technicianList = technicianController.GetTechniciansWithOpenIncidents();

                technicianNameComboBox.DataSource = technicianList;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, ex.GetType().ToString());
            }
        }