39 lines
992 B
C#
39 lines
992 B
C#
using MainShell.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Stylet;
|
|
using StyletIoC;
|
|
|
|
namespace MainShell.DeviceMaintance.ViewModel
|
|
{
|
|
public class IOMaintanceViewModel : BaseScreen
|
|
{
|
|
private IOMonitorViewModel _iOMonitorViewModel;
|
|
[Inject]
|
|
public IOMonitorViewModel IOMonitorViewModel
|
|
{
|
|
get { return _iOMonitorViewModel; }
|
|
set { _iOMonitorViewModel = value; }
|
|
}
|
|
|
|
private CylinderViewModel _cylinderViewModel;
|
|
[Inject]
|
|
public CylinderViewModel CylinderViewModel
|
|
{
|
|
get { return _cylinderViewModel; }
|
|
set { _cylinderViewModel = value; }
|
|
}
|
|
|
|
private IoTestViewModel _ioTestViewModel;
|
|
[Inject]
|
|
public IoTestViewModel IoTestViewModel
|
|
{
|
|
get { return _ioTestViewModel; }
|
|
set { _ioTestViewModel = value; }
|
|
}
|
|
}
|
|
}
|