1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Wayne.ForecourtControl
- {
- public interface IPumpConfiguration
- {
- IDeviceIndex PumpNumber { get; }
- decimal MaxRelease { get; }
- IEnumerable<INozzleConfiguration> Nozzles { get; }
- IEnumerable<IServiceModeConfiguration> ServiceModes { get; }
- int GetOperationMode(OperationModeType stationOpMode);
- }
- }
|