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);
-
-
-
- decimal Price { get; }
-
-
-
-
- decimal GetPrice(PriceGroup pricegroup);
- IFuelProductConfiguration Product { get; }
- }
- }
|