123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- #endregion
- using System;
- using Wayne.Lib;
- namespace Wayne.ForecourtControl
- {
-
-
-
-
- public interface IPricePole
- {
- #region Properties
-
-
-
- int Id { get;}
-
-
-
- DeviceConnectionState ConnectionState { get;}
-
-
-
- System.Collections.ObjectModel.ReadOnlyCollection<IPricePoleSegment> DisplaySegments{get;}
- #endregion
- #region Events
-
-
-
- event EventHandler<ConnectionChangedEventArgs> OnConnectionStateChanged;
- #endregion
- }
- }
|