private void VVeiculoCadastro_Load(object sender, EventArgs e) { atual = CPessoa.Obter(atual); if (atual != null) { textBoxCPF.Text = atual.CPF; } else { Close(); } }
private void VPessoaEditar_Load(object sender, EventArgs e) { atual = CPessoa.Obter(atual); if (atual != null) { txtCPF.Text = atual.CPF; txtNome.Text = atual.Nome; txtDataNascimento.Value = atual.DataNascimento; } else { Close(); } }