using CommunityToolkit.Mvvm.Input; namespace SummaryModule.ViewModels; internal partial class N2PurgeStatusViewModel : ObservableObject { public N2PurgeStatusViewModel(IBottomPopManager popManager) { this._bottomPopManager = popManager; } private readonly IBottomPopManager _bottomPopManager; [RelayCommand] private void Select() { this._bottomPopManager.ShowPop("N2PurgeSelector",null ,PopDirectionEnum.Left); } }