private async void Save()
        {
            if (this.ValidateForm())
            {
                this.SetDataPersonaFromRules();
                await _sqliteService.SavePersonaAsync(this.Persona);

                MessagingCenter.Send <string>("App", "ResetList");
                DependencyService.Get <IMessage>().ShortAlert($"Los datos de la persona {this.Persona.Nombres} {this.Persona.Apellidos} fueron " +
                                                              $"guardados satisfactoriamente.");
                await Application.Current.MainPage.Navigation.PopAsync();
            }
            else
            {
                Plugins.Vibrate();
                await Application.Current.MainPage.DisplayAlert("Error", "Ingrese los datos", "OK");
            }
        }