1
Guys I’m having the following problem.
I created a class for DTO like this:
public class PessoaFuncionario
{
public Pessoa Pessoa { get; set; }
public string Nome { get; set; }
public string CPF { get; set; }
public string CRM { get; set; }
}
She uses the other Pessoa
that is so:
public class Pessoa
{
public int IDPessoa { get; set; }
public PessoaTipo PessoaTipo { get; set; }
}
I then created a business object with the rules to insert:
public string Alterar(PessoaFuncionario pessoaFuncionario)
{
try
{
acessoDadosSqlServer.LimparParametros();
acessoDadosSqlServer.AdicionarParametros("@IDPessoaFuncionario", pessoaFuncionario.Pessoa.IDPessoa);
acessoDadosSqlServer.AdicionarParametros("@Nome", pessoaFuncionario.Nome);
acessoDadosSqlServer.AdicionarParametros("@CPF", pessoaFuncionario.CPF);
acessoDadosSqlServer.AdicionarParametros("@CRM", pessoaFuncionario.CRM);
string idPessoaFuncionario = acessoDadosSqlServer.ExecutarManipulacao(CommandType.StoredProcedure, "uspPessoaFuncionarioAlterar").ToString();
return idPessoaFuncionario;
}
catch (Exception excpetion)
{
return excpetion.Message;
}
}
And the method on the change button:
else if (acaoNaTelaSelecionada == AcaoNaTela.Alterar)
{
PessoaFuncionario pessoaFunc = new PessoaFuncionario();
pessoaFunc.Pessoa.IDPessoa = Convert.ToInt32(txtCodigo.Text); // << Onde aparece o erro
pessoaFunc.Nome = txtNome.Text;
pessoaFunc.CRM = txtCRM.Text;
pessoaFunc.CPF = mskCPF.Text;
PessoaFuncionarioNegocios pessoaNegocios = new PessoaFuncionarioNegocios();
string retorna = pessoaNegocios.Alterar(pessoaFunc);
try
{
int IDPessoa = Convert.ToInt32(retorna);
MessageBox.Show("Registro atualizado com sucesso.", "Sucesso", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch
{
MessageBox.Show("Não foi possivel alterar. Detalhes: " + retorna, "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
Error occurs at the beginning of the save method.
But you’re making a mistake by saying Undefined object reference for an object instance.
I did it that way for the insert and rule out and both are functioning normally. Only the alter who is accusing this error. Could someone give me a light? Thanks in advance.
On which line do you accuse the error?
– stderr
At the very beginning of the flame of the change method. Else if (acanNaTelaSelected == Acaonatela.Change) { Personal Functionwork = new Personwork(); work.Person.Idperson = Convert.Toint32(txtCodigo.Text); <<<<
– George