示例#1
0
 public PromotionType SecondPromotionType()
 {
     var secondPromotionType = new PromotionType
     {
         PromotionTypeId = (int)DisountType.Values.AmountOff,
         PromotionTypeValue = DisountType.Values.AmountOff.ToString()
     };
     return secondPromotionType;
 }
示例#2
0
 public PromotionType ThirdPromotionType()
 {
     var thirdPromotionType = new PromotionType
     {
         PromotionTypeId = (int)DisountType.Values.FixedAmount,
         PromotionTypeValue = DisountType.Values.FixedAmount.ToString()
     };
     return thirdPromotionType;
 }
示例#3
0
 public PromotionType FirstPromotionType()
 {
     var firstPromotionType = new PromotionType
     {
         PromotionTypeId = (int)DisountType.Values.PercentageOff,
         PromotionTypeValue = DisountType.Values.PercentageOff.ToString()
     };
     return firstPromotionType;
 }