PromotionEnum.cs 410 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace MS.Entities.Enum
  5. {
  6. public enum PromotionType
  7. {
  8. Discount,
  9. Coupon, //The Coupon used in the Trx
  10. Point,
  11. LocalDiscount,
  12. IssueCoupon //The Coupon issued in the Trx
  13. }
  14. public enum PromotionStatus
  15. {
  16. Validated,
  17. Applied, //Used
  18. Voided
  19. }
  20. }