Merge branch 'Lab1_Base' into Lab1_Hard

This commit is contained in:
Данияр Аглиуллов 2023-02-06 01:55:18 +04:00
commit c92ffd7a6f

View File

@ -64,16 +64,15 @@ namespace ConfectioneryView
{
if (dataGridView.SelectedRows.Count == 1)
{
var service = Program.ServiceProvider?.GetService(typeof(FormPastryComponent));
if (service is FormPastryComponent form)
var service = Program.ServiceProvider?.GetService(typeof(FormPastry));
if (service is FormPastry form)
{
form.Id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
if (form.ShowDialog() == DialogResult.OK)
{
LoadData();
}
}
LoadData();
}
}
private void ButtonDel_Click(object sender, EventArgs e)