PriceGroupEnum.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. namespace Wayne.ForecourtControl
  2. {
  3. /*
  4. /// <summary>
  5. /// Price group determines the price for a fuelling together with the fuel grade.
  6. /// The price is set in a matrix between the Fuel grade and then +/- prices per price group.
  7. /// </summary>
  8. /// <see cref="IPump"/>
  9. /// <see cref="IFuelling"/>
  10. public enum PriceGroup
  11. {
  12. /// <summary>
  13. ///
  14. /// </summary>
  15. FullService = 0,
  16. /// <summary>
  17. ///
  18. /// </summary>
  19. PayInKiosk = 1,
  20. /// <summary>
  21. ///
  22. /// </summary>
  23. OptCard = 2,
  24. /// <summary>
  25. ///
  26. /// </summary>
  27. OptCash = 3,
  28. /// <summary>
  29. ///
  30. /// </summary>
  31. Appl1 = 4,
  32. /// <summary>
  33. ///
  34. /// </summary>
  35. Appl2 = 5,
  36. /// <summary>
  37. ///
  38. /// </summary>
  39. Appl3 = 6,
  40. /// <summary>
  41. ///
  42. /// </summary>
  43. Appl4 = 7,
  44. /// <summary>
  45. ///
  46. /// </summary>
  47. Appl5 = 8,
  48. /// <summary>
  49. ///
  50. /// </summary>
  51. Appl6 = 9,
  52. /// <summary>
  53. ///
  54. /// </summary>
  55. Appl7 = 10,
  56. /// <summary>
  57. ///
  58. /// </summary>
  59. Appl8 = 11,
  60. /// <summary>
  61. ///
  62. /// </summary>
  63. Unknown = 12,
  64. }
  65. */
  66. }