private void Refrescar() { try { lstAutores.DataSource = Logica.SeleccionarTodos(); lstAutores.DisplayMember = "Nombre"; } catch (Exception) { throw; } }
private void Refrescar() { dtgAutores.DataSource = Logica.SeleccionarTodos(); }
private void llenarComboAutores() { Autor_Logica Logica = new Autor_Logica(); cbmAutores.DataSource = Logica.SeleccionarTodos(); }