public async Task <IActionResult> GetAllPersons()
        {
            var result = await _personService.GetAllPersons();

            return(Ok(result));
        }