V1版本
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using CapMachine.Core;
|
||||
using CapMachine.Wpf.Services;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@@ -9,9 +10,17 @@ namespace CapMachine.Wpf.ViewModels
|
||||
{
|
||||
public class FooterViewModel : NavigationViewModel
|
||||
{
|
||||
public FooterViewModel()
|
||||
public FooterViewModel(DataRecordService dataRecordService,ConfigService configService,MachineRtDataService machineRtDataService,SysRunService sysService)
|
||||
{
|
||||
var dd = 1;
|
||||
DataRecordService = dataRecordService;
|
||||
ConfigService = configService;
|
||||
MachineRtDataService = machineRtDataService;
|
||||
SysService = sysService;
|
||||
}
|
||||
|
||||
public DataRecordService DataRecordService { get; }
|
||||
public ConfigService ConfigService { get; }
|
||||
public MachineRtDataService MachineRtDataService { get; }
|
||||
public SysRunService SysService { get; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user