28 lines
602 B
C#
28 lines
602 B
C#
using CapMachine.Wpf.CanDrive;
|
|
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.Services
|
|
{
|
|
/// <summary>
|
|
/// Can驱动服务
|
|
/// </summary>
|
|
public class CanDriveService:BindableBase
|
|
{
|
|
public CanDriveService()
|
|
{
|
|
ToomossCanDrive=new ToomossCan();
|
|
//ToomossCanDrive.StartCanDrive();
|
|
}
|
|
|
|
/// <summary>
|
|
/// ToomossCanDrive
|
|
/// </summary>
|
|
public ToomossCan ToomossCanDrive { get; set; }
|
|
}
|
|
}
|