public ClientWindow() { InitializeComponent(); SQLRequester.getAllClientsNames(ref this.comboBox1); this.comboBox1.SelectedIndex = 0; }
private void button2_Click(object sender, EventArgs e) { SQLRequester.FindExcursion(ref this.dataGridView2, this.comboBox1.Text, this.comboBox3.Text, this.comboBox2.Text, this.comboBox5.Text); }
private void button3_Click(object sender, EventArgs e) { SQLRequester.FindPreferences(ref this.dataGridView1, this.Text.ToCharArray()[0].ToString()); }
private void button1_Click(object sender, EventArgs e) { SQLRequester.AddPreference(ref this.dataGridView1, this.comboBox1.Text, this.comboBox3.Text, this.comboBox2.Text, this.comboBox5.Text, this.Text.ToCharArray()[0].ToString()); }