Account.YearlyManagement.ViewModel.VMYearlyManagement.RefreshYearly C# (CSharp) Method

RefreshYearly() private method

private RefreshYearly ( bool showNotFoundMessage ) : void
showNotFoundMessage bool
return void
        private void RefreshYearly(bool showNotFoundMessage)
        {
            this.RefreshingVisibility = Visibility.Visible;
            this._showNotFoundMessage = showNotFoundMessage;
            this._yearlys.Clear();
            this._tf.StartNew(this.GetYearlys).ContinueWith(this.GetYearlysCompleted, this._scheduler);
        }