private void btedytujautokary_Click(object sender, EventArgs e) { frmautokaryedycja edit = new frmautokaryedycja(bsautokar.Current as Autokar); edit.ShowDialog(); db.SaveChanges(); bsautokar.DataSource = db.Autokar.ToList(); }
private void btdodajautokary_Click(object sender, EventArgs e) { frmautokaryedycja add = new frmautokaryedycja(null); if (add.ShowDialog() == System.Windows.Forms.DialogResult.OK) { db.Autokar.Add(add.Bus); db.SaveChanges(); bsautokar.DataSource = db.Autokar.ToList(); } }