ITankConfiguration.cs 304 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Wayne.ForecourtControl
  6. {
  7. public interface ITankConfiguration
  8. {
  9. IDeviceIndex TankNumber { get; }
  10. IFuelProductConfiguration Product { get; }
  11. int TankGroup { get; }
  12. }
  13. }