- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Wayne.ForecourtControl
- {
- public interface ITankConfiguration
- {
- IDeviceIndex TankNumber { get; }
- IFuelProductConfiguration Product { get; }
- int TankGroup { get; }
- }
- }
|