private void TurnosForm_Load(object sender, EventArgs e) { Dictionary <int, String> especialidades; List <String> estados; try { estados = tn.listarEstado(); foreach (String pair in estados) { cbxEstados.Items.Add(pair); } especialidades = ProfesionalNegocio.getEspecialidades(); foreach (KeyValuePair <int, String> pair in especialidades) { cbxEspecialidades.Items.Add(pair); } cbxEspecialidades.DisplayMember = "Value"; for (int i = 0; i < 4; i++) { cbxMesAnterior.Items.Add(i + 1); cbxMesPosterior.Items.Add(i + 1); } } catch (Exception ex) { MessageBox.Show("Error: " + ex.ToString()); } }
public CambioEstado() { tn = new TurnoNegocio(); turno = new Turno(); InitializeComponent(); estados = tn.listarEstado(); foreach (String pair in estados) { cbxEstado.Items.Add(pair); } }