예제 #1
0
        public Int32 SalvarPessoa(EntidadePessoa p)
        {
            string link = @"insert into Pessoa values(@nome, @cpf, @nascimento, @email)";

            try
            {
                conectar.Conectar();
                SqlCommand com = new SqlCommand(link, conectar.con);
                com.Parameters.AddWithValue("@nome", p.Nome);
                com.Parameters.AddWithValue("@cpf", p.CPF);
                com.Parameters.AddWithValue("@nascimento", p.DataNascimento);
                com.Parameters.AddWithValue("@email", p.Email);
                Int32 salvar = Convert.ToInt32(com.ExecuteScalar());
                return(salvar);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
            finally
            {
                conectar.Desconectar();
            }
        }