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