public async Task <ActionResult> Detalhe(int codigo)
        {
            using (ServicePessoaClient cliente = new ServicePessoaClient())
            {
                var pessoa = await cliente.BuscarPorCodigoAsync(codigo);

                return(View(AutoMapper.Mapper.Map <PessoaDetalhe>(pessoa)));
            }
        }
        // GET: Pessoa
        public async Task <ActionResult> Index()
        {
            using (ServicePessoaClient cliente = new ServicePessoaClient())
            {
                var lista = await cliente.ListarPessoasAsync();

                return(View(AutoMapper.Mapper.Map <PessoaDetalhe[]>(lista)));
            }
        }