1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Wayne.ForecourtControl
- {
- public interface IServiceModeConfiguration
- {
- FuellingType ServiceMode { get; }
- OperationModeType OperationMode { get; }
- AuthModeType AuthMode { get; }
- PriceGroup DefaultPriceGroup { get; }
- IFuellingModeConfiguration DefaultFuellingMode { get; }
- PresetType DefaultPresetType { get; }
- IFuellingModeConfiguration GetGradeFuellingMode(IFuelGradeConfiguration fuelGrade);
- int VolumeProfile { get; }
- }
- }
|