IPricePole.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #region --------------- Copyright Dresser Wayne Pignone -------------
  2. /*
  3. * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Com/IPricePole.cs $
  4. *
  5. * 1 07-03-09 15:34 roger.månsson
  6. * Created.
  7. */
  8. #endregion
  9. using System.Runtime.InteropServices;
  10. namespace Wayne.ForecourtControl.Com
  11. {
  12. /// <summary>
  13. /// Represents a price display on the forecourt. The price display is constructed of a series of
  14. /// price display segments, that each display the price for one fuel grade in one price group.
  15. /// </summary>
  16. [ComVisible(true)]
  17. public interface IPricePole
  18. {
  19. #region Properties
  20. /// <summary>
  21. /// Price pole number
  22. /// </summary>
  23. int Id { get;}
  24. /// <summary>
  25. /// The connection state of the price pole.
  26. /// </summary>
  27. DeviceConnectionState ConnectionState { get;}
  28. /// <summary>
  29. /// An array of the display segments in the price pole.
  30. /// </summary>
  31. IPricePoleSegment[] DisplaySegments { get;}
  32. #endregion
  33. }
  34. }