private void AlterarTelaListarDadosBotao_Click(object sender, EventArgs e) { var codigoEditora = Convert.ToInt32(mostrarListarDadosEditorasDataGridView.SelectedRows[0].Cells["clnCodigoEditora"].Value); var editora = _listaEditoraController.AlterarListaEditora(codigoEditora); var telaCadastroEditoras = new TelaCadastroEditoras(editora); telaCadastroEditoras.ShowDialog(); Carregar(); }
private void EditorasCadBibliotecaMenuitem_Click(object sender, EventArgs e) { TelaCadastroEditoras telaCadastroEditoras = new TelaCadastroEditoras(); telaCadastroEditoras.Show(); }