private async void ResetList()
        {
            this.IsRefreshing = true;
            this.PeopleList   = await _sqliteService.GetPersonasAsync();

            this.PersonasLista.Clear();

            foreach (var item in PeopleList)
            {
                PersonasLista.Add(new PersonaItemViewModel(item));
            }

            this.IsRefreshing = false;
        }