Account.DailyManagement.ViewModel.VMDailyManagement.RefreshDaily C# (CSharp) Method

RefreshDaily() private method

private RefreshDaily ( bool showNotFoundMessage ) : void
showNotFoundMessage bool
return void
        private void RefreshDaily(bool showNotFoundMessage)
        {
            this.RefreshingVisibility = Visibility.Visible;
            this._showNotFoundMessage = showNotFoundMessage;
            this._dailys.Clear();
            this._tf.StartNew(this.GetDailys).ContinueWith(this.GetDailysCompleted, this._scheduler);
        }