IServiceModeConfiguration.cs 606 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Wayne.ForecourtControl
  6. {
  7. public interface IServiceModeConfiguration
  8. {
  9. FuellingType ServiceMode { get; }
  10. OperationModeType OperationMode { get; }
  11. AuthModeType AuthMode { get; }
  12. PriceGroup DefaultPriceGroup { get; }
  13. IFuellingModeConfiguration DefaultFuellingMode { get; }
  14. PresetType DefaultPresetType { get; }
  15. IFuellingModeConfiguration GetGradeFuellingMode(IFuelGradeConfiguration fuelGrade);
  16. int VolumeProfile { get; }
  17. }
  18. }