1234567891011121314151617181920212223242526272829 |
- 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);
- /// <summary>
- /// the BasePrice + GeneralPriceDelta
- /// </summary>
- decimal Price { get; }
- /// <summary>
- /// the Price + PriceGroupDelta for the specified price
- /// </summary>
- /// <returns></returns>
- decimal GetPrice(PriceGroup pricegroup);
- IFuelProductConfiguration Product { get; }
- }
- }
|