N2PurgeStatusViewModel.cs 391 B

1234567891011121314
  1. using CommunityToolkit.Mvvm.Input;
  2. namespace SummaryModule.ViewModels;
  3. internal partial class N2PurgeStatusViewModel(IBottomPopManager popManager,IDialogService dialogService) : ObservableObject
  4. {
  5. [RelayCommand]
  6. private void Select()
  7. {
  8. //popManager.ShowPop("N2PurgeSelector",null ,PopDirectionEnum.Left);
  9. dialogService.Show("N2PurgeSelector", null);
  10. }
  11. }