public IActionResult Get()
        {
            var list = _pessoaService.FindAll();

            return(Ok(list));
        }