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