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 TankSuctions { get; } int PrimarySuctionPercent { get; } int SecondarySuctionPercent { get; } } }