123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Wayne.ForecourtControl
- {
- public interface IFuelGradeConfiguration
- {
- int GradeId { get; }
- string Name { get; }
- IFuelProductConfiguration ProductHigh { get; }
- int ProductHighPerc { get; }
- IFuelProductConfiguration ProductLow { get; }
- int ProductLowPerc { get; }
- string UnitOfMeasure { get; }
- }
- }
|