Exemplo n.º 1
0
        async Task ExecuteSaveCommand()
        {
            if (IsBusy)
            {
                return;
            }

            IsBusy = true;

            await MainService.AddNewSentence(Item);

            Save?.Invoke(this, EventArgs.Empty);

            IsBusy = false;
        }