예제 #1
0
        public bool InserirPessoa(Pessoa pessoa)
        {
            cadastroPessoaRepository = new CadastroPessoaRepository();

            if (pessoa != null)
            {
                cadastroPessoaRepository.InserirPessoa(pessoa);
                return(true);
            }
            return(false);
        }