private async void OnSaveTapped()
        {
            IsBusy = true;
            await _leadsService.AddUpdateLead(CurrentLead);

            IsBusy = true;
            RequestClose?.Invoke(new DialogParameters {
                { AppConstants.LeadKey, CurrentLead }
            });
        }
예제 #2
0
        private async void OnSaveTapped()
        {
            await _leadService.AddUpdateLead(Current);

            await NavigationService.GoBackAsync();
        }