namespace Wayne.ForecourtControl
{
/*
///
/// Price group determines the price for a fuelling together with the fuel grade.
/// The price is set in a matrix between the Fuel grade and then +/- prices per price group.
///
///
///
public enum PriceGroup
{
///
///
///
FullService = 0,
///
///
///
PayInKiosk = 1,
///
///
///
OptCard = 2,
///
///
///
OptCash = 3,
///
///
///
Appl1 = 4,
///
///
///
Appl2 = 5,
///
///
///
Appl3 = 6,
///
///
///
Appl4 = 7,
///
///
///
Appl5 = 8,
///
///
///
Appl6 = 9,
///
///
///
Appl7 = 10,
///
///
///
Appl8 = 11,
///
///
///
Unknown = 12,
}
*/
}