public async Task <IActionResult> GetAsync()
        {
            var list = await _service.GetAllPersonsAsync();

            return(Ok(list));
        }