/// <summary> /// Deprecated Method for adding a new object to the pessoa EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddTopessoa(pessoa pessoa) { base.AddObject("pessoa", pessoa); }
/// <summary> /// Create a new pessoa object. /// </summary> /// <param name="idPessoa">Initial value of the idPessoa property.</param> /// <param name="nome">Initial value of the nome property.</param> /// <param name="cpf">Initial value of the cpf property.</param> /// <param name="dataNascimento">Initial value of the dataNascimento property.</param> /// <param name="sexo">Initial value of the sexo property.</param> public static pessoa Createpessoa(global::System.Int32 idPessoa, global::System.String nome, global::System.String cpf, global::System.DateTime dataNascimento, global::System.Int32 sexo) { pessoa pessoa = new pessoa(); pessoa.idPessoa = idPessoa; pessoa.nome = nome; pessoa.cpf = cpf; pessoa.dataNascimento = dataNascimento; pessoa.sexo = sexo; return pessoa; }