| 123456789101112131415161718192021222324252627 |
- using System;
- using SHJX.Service.Model.Control;
- using SHJX.Service.ServerClient;
- namespace SHJX.Service.Control.Route.RouteController
- {
- /// <summary>
- /// 搅拌
- /// </summary>
- public class TitrationStirOperateHigh : IDisposable
- {
- private const string OpName = "TitrationStir2";
- /// <summary>
- /// 开始搅拌
- /// </summary>
- public bool StartStir { get; set; }
- public TitrationStirOperateHigh()
- {
- StartStir = DataCentre.GetStorageContent.Factory(OpName).Start();
- }
- public void Dispose()
- {
- DataCentre.GetStorageContent.Factory(OpName).Stop();
- }
- }
- }
|