| 1234567891011121314 |
- using CommunityToolkit.Mvvm.Input;
- namespace SummaryModule.ViewModels;
- internal partial class N2PurgeStatusViewModel(IBottomPopManager popManager,IDialogService dialogService) : ObservableObject
- {
- [RelayCommand]
- private void Select()
- {
- //popManager.ShowPop("N2PurgeSelector",null ,PopDirectionEnum.Left);
- dialogService.Show("N2PurgeSelector", null);
- }
- }
|