Exemplo n.º 1
0
        private async Task LoadSubscriptions()
        {
            IsLoadingSubscriptions = true;

            try
            {
                var subscribed = await repository.GetSubscribedAsync();

                await Series.AddAllAsync(subscribed);
            }
            finally
            {
                IsLoadingSubscriptions = false;
            }
        }