#region --------------- Copyright Dresser Wayne Pignone -------------
/*
* $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/IPricePoleSegment.cs $
*
* 1 07-03-08 13:09 roger.månsson
* Created
*/
#endregion
namespace Wayne.ForecourtControl
{
///
/// A display segment will display the configured unit price,
///FuelPrice [ PricePoleSegment..FuelGrade, PricePoleSegment..FuelGrade PriceGroup ].
///The price cannot be set directly by the application, since there are law’s
///and regulations about when Price pole and pump price can be updated, dependent
///on price increase or price decrease.
///Physical update of the PricePoleDisplay Segments, and pumps, are made automatically
/// by the Forecourt server. when ActivateFuelPrices method in the Forecourt control
/// object is called.
///
public interface IPricePoleSegment
{
#region Properties
///
/// The id of the price pole segment.
///
int Id { get;}
///
/// The Fuel grade price that should be displayed
///
int FuelGrade { get;}
///
/// The Price group price that should be displayed
///
int PriceGroup { get;}
#endregion
}
}