INozzleConfiguration.cs 438 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Wayne.ForecourtControl
  6. {
  7. public interface INozzleConfiguration
  8. {
  9. IDeviceIndex NozzleNumber { get; }
  10. IFuelGradeConfiguration Grade { get; }
  11. IEnumerable<ITankSuctionConfiguration> TankSuctions { get; }
  12. int PrimarySuctionPercent { get; }
  13. int SecondarySuctionPercent { get; }
  14. }
  15. }