using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wayne.ForecourtControl
{
public interface IFuelPriceInfoConfiguration
{
decimal BasePrice { get; }
decimal GeneralPriceDelta { get; }
decimal GetPriceGroupDelta(PriceGroup priceGroup);
///
/// the BasePrice + GeneralPriceDelta
///
decimal Price { get; }
///
/// the Price + PriceGroupDelta for the specified price
///
///
decimal GetPrice(PriceGroup pricegroup);
IFuelProductConfiguration Product { get; }
}
}