using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Wayne.ForecourtControl { public interface IFuelProductConfiguration { int ProductId { get; } string Name { get; } string UnitOfMeasure { get; } } }