IPump.cs 401 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Pumps
  7. {
  8. public interface IPump
  9. {
  10. bool IsRunning { get; }
  11. bool SetPump(out string reason, int time, bool isOn);
  12. bool SetMainPowerOnOff(bool isOn, out string reason);
  13. }
  14. }