IFuelPriceAddPricePerPriceGroup.cs 552 B

1234567891011121314151617181920
  1. namespace Wayne.ForecourtControl
  2. {
  3. /// <summary>
  4. /// Represents the Addprices for a FuelGrade object.
  5. /// </summary>
  6. [System.Runtime.InteropServices.ComVisible(true)]
  7. public interface IFuelPriceAddPricePerPriceGroup
  8. {
  9. /// <summary>
  10. /// Indexer that returns the AddPrice for a specific PriceGroup index (0-11)
  11. /// </summary>
  12. /// <param name="priceGroup"></param>
  13. /// <returns></returns>
  14. decimal this[int priceGroup]
  15. {
  16. get;
  17. set;
  18. }
  19. }
  20. }