private void FrmCliente_Load(object sender, EventArgs e) { model get = new model(); List <DtoCidadeMap> ListCidades = get.getAllCidades(); comboBox1.DataSource = null; comboBox1.ValueMember = "id"; comboBox1.DisplayMember = "nome"; comboBox1.DataSource = ListCidades; }
private void FrmMotorista_Load(object sender, EventArgs e) { model get = new model(); List <DtoCidadeMap> ListCidades = get.getAllCidades(); comboBox1.DataSource = null; comboBox1.ValueMember = "id"; comboBox1.DisplayMember = "nome"; comboBox1.DataSource = ListCidades; List <DtoMotorista> d = get.getMotoristasAll(); CarregarGrid(d); }