12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Wayne.ForecourtControl
- {
- public interface INozzleConfiguration
- {
- IDeviceIndex NozzleNumber { get; }
- IFuelGradeConfiguration Grade { get; }
- IEnumerable<ITankSuctionConfiguration> TankSuctions { get; }
- int PrimarySuctionPercent { get; }
- int SecondarySuctionPercent { get; }
-
- }
- }
|