IMonitor.cs 249 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. namespace Monitor
  3. {
  4. public interface IMonitor
  5. {
  6. void DisplayPLCInfo();
  7. void DisplayTerminalState();
  8. void DisplayLicensePlate();
  9. void DisplayImage();
  10. void Start();
  11. void Stop();
  12. }
  13. }