private void salvar(Contatos contato) { CadastroDLL.Cadastro cdtDLL = new CadastroDLL.Cadastro(); contato.Nome = txtNome.Text.ToUpper(); contato.Endereco = txtEndereco.Text.ToUpper(); contato.Telefone = txtTelefone.Text.ToUpper(); contato.Celular = txtCelular.Text.ToUpper(); contato.Email = txtEmail.Text.ToUpper(); }
private void DgvAgenda_CellContentClick(object sender, DataGridViewCellEventArgs e) { CadastroDLL.Cadastro cdtDLL = new CadastroDLL.Cadastro(); try { dgvAgenda.DataSource = cdtDLL.ExibirDadosDAO(); } catch (Exception erro) { MessageBox.Show("Erro ao exibir os dados" + erro); } }