Esempio n. 1
0
        async Task OnForgotPassword()
        {
            if (!this.IsEnabled)
            {
                return;
            }

            this.IsEnabled = false;
            this.IsRunning = true;

            await _popUpService.ShowForgotPasswordAsync();

            this.IsEnabled = true;
            this.IsRunning = false;
        }