public async Task <IActionResult> Remove(int id) { try { return(new OkObjectResult(await _pessoaJuridicaService.Remove(id))); } catch (Exception ex) { throw new Exception(ex.Message); } }