提交了仪表的模型
This commit is contained in:
20
CapMachine.Wpf/ViewModels/UserManageViewModel.cs
Normal file
20
CapMachine.Wpf/ViewModels/UserManageViewModel.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using CapMachine.Core;
|
||||
using Prism.Events;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.ViewModels
|
||||
{
|
||||
public class UserManageViewModel : NavigationViewModel
|
||||
{
|
||||
public UserManageViewModel(IEventAggregator eventAggregator)
|
||||
{
|
||||
//事件服务
|
||||
_EventAggregator = eventAggregator;
|
||||
}
|
||||
private IEventAggregator _EventAggregator { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user