public async Task <IActionResult> Get()
        {
            var lista = await _service.FindAll();

            return(Ok(lista));
        }