namespace Wayne.ForecourtControl
{
///
/// Represents the Addprices for a FuelGrade object.
///
[System.Runtime.InteropServices.ComVisible(true)]
public interface IFuelPriceAddPricePerPriceGroup
{
///
/// Indexer that returns the AddPrice for a specific PriceGroup index (0-11)
///
///
///
decimal this[int priceGroup]
{
get;
set;
}
}
}