private void ExecuteShowAll()
 {
     if (_showOption != ShowOption.ShowAll)
     {
         _showOption = ShowOption.ShowAll;
         PagedCollectionViewWrapper.SetFilter(_filter);
     }
 }
Exemple #2
0
        private void ExecuteShowAll()
        {
            if (_showOption != MedicationListViewModel.ShowOption.ShowAll)
            {
                _showOption = MedicationListViewModel.ShowOption.ShowAll;

                PagedCollectionViewWrapper.SetFilter(_filter);
            }
        }
Exemple #3
0
        private void ExecuteShowActiveOnly()
        {
            if (_showOption == ShowOption.ShowActive)
            {
                return;
            }
            _showOption = ShowOption.ShowActive;

            PagedCollectionViewWrapper.SetFilter(_filter);
        }