private void button1_Click(object sender, EventArgs e) { this.Close(); this.Hide(); Lista_wypozyczen lista = new Lista_wypozyczen(this.database); lista.ShowDialog(); }
private void button1_Click(object sender, EventArgs e) { DM_Szczegoly_wydania_czesci czescss = new DM_Szczegoly_wydania_czesci(); czescss.Id_czesci = Convert.ToInt32(comboBox1.SelectedValue); czescss.Id_wydania_czesci = Convert.ToInt32(comboBox2.SelectedValue); czescss.Ilosc = Convert.ToInt32(textBox1.Text); this.database.DM_Szczegoly_wydania_czesci.Add(czescss); this.database.SaveChanges(); this.Close(); Lista_wypozyczen listaa = new Lista_wypozyczen(this.database); listaa.ShowDialog(); }
private void button1_Click(object sender, EventArgs e) { //Lista_wypozyczen frm = (Lista_wypozyczen)Application.OpenForms["Lista_wypozyczen"]; DM_Wydanie_czesci newWypozyczenie_czesci = new DM_Wydanie_czesci(); //newWypozyczenie_czesci.Id_wydania_czesci = Convert.ToInt32(comboBox1.SelectedValue); newWypozyczenie_czesci.Id_pracownik_pobierajacy = Convert.ToInt32(comboBox2.SelectedValue); newWypozyczenie_czesci.Id_pracownik_wydajacy = Convert.ToInt32(comboBox3.SelectedValue); newWypozyczenie_czesci.Data_i_godzina = Convert.ToDateTime(dateTimePicker1.Value); newWypozyczenie_czesci.Uwagi = textBox1.Text; this.database.DM_Wydanie_czesci.Add(newWypozyczenie_czesci); this.database.SaveChanges(); //frm.dgvWypozyczenia.DataSource = this.database.vDM_Wydanie_czesci.ToList(); this.Close(); this.Hide(); Lista_wypozyczen lista = new Lista_wypozyczen(this.database); lista.ShowDialog(); }