You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
307 B
16 lines
307 B
3 years ago
|
using ECMonitor.Code.Models;
|
||
|
using Prism.Events;
|
||
|
using Prism.Regions;
|
||
|
|
||
|
namespace ECMonitor.Page.Test
|
||
|
{
|
||
|
public class MainViewModel : BaseModel
|
||
|
{
|
||
|
private IEventAggregator _ea;
|
||
|
|
||
|
public MainViewModel(IRegionManager regionManager, IEventAggregator ea) : base(regionManager, ea)
|
||
|
{
|
||
|
_ea = ea;
|
||
|
}
|
||
|
}
|
||
|
}
|