private async void Cancel()
        {
            CanExecuteInitial();
            await ResetPasswordPopupHelper.EsconderAsync();

            CanExecuteEnd();
        }
예제 #2
0
        private async void ResetPassword()
        {
            CanExecuteInitial();
            await ResetPasswordPopupHelper.Mostrar(CallbackDate);

            CanExecuteEnd();
        }
        private async void Confirm()
        {
            CanExecuteInitial();
            await ResetPasswordPopupHelper.EsconderAsync();

            try
            {
                Analytics.TrackEvent(InsightsTypeEvents.ActionView, new Dictionary <string, string>
                {
                    { InsightsPagesNames.LoginPage, InsightsActionNames.ForgotPassword }
                });
            }
            catch { }
            CanExecuteEnd();
        }