private void btn_Incluir_Click(object sender, EventArgs e) { Fretamento_cad cad = new Fretamento_cad(DatabaseContext, new IFretamento()); cad.ShowDialog(); if (cad.Confirmou) { DatabaseContext.Fretamentos.Add(cad.IFretamento); DatabaseContext.SaveChanges(); olvFretamento.AddObject(cad.IFretamento); } }
private void btn_Visualizar_Click(object sender, EventArgs e) { if (olvFretamento.SelectedObject == null) { MessageBox.Show("Selecione o registro que deseja visualizar.", "Atenção.", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } Fretamento_cad cad = new Fretamento_cad(DatabaseContext, (IFretamento)olvFretamento.SelectedObject, true); cad.ShowDialog(); if (cad.Confirmou) { olvFretamento.RefreshObject(cad.IFretamento); DatabaseContext.SaveChanges(); } }