12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- #endregion
- using System;
- using Wayne.Lib;
- namespace Wayne.ForecourtControl
- {
-
-
-
- public interface INozzle : Wayne.Lib.IIdentifiableEntity
- {
- #region Properties
-
-
-
- NozzleState State { get;}
-
-
-
- int PrimaryTankGroupId { get;}
-
-
-
- int PrimaryTankGroupPercentage { get;}
-
-
-
- int SecondaryTankGroupId { get;}
-
-
-
- int FuelGrade { get;}
- #endregion
- #region Methods
-
-
-
-
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
- void ReadPumpAccumulatorAsync(EventHandler<AsyncCompletedEventArgs<PumpAccumulatorReading>> accumulatorsRead, object userToken);
- #endregion
- }
- }
|