Example #1
0
 public CouponType SecondCouponType()
 {
     var secondCouponType = new CouponType
     {
         CouponTypeId = (int)DisountType.Values.AmountOff,
         CouponTypeValue = DisountType.Values.AmountOff.ToString()
     };
     return secondCouponType;
 }
Example #2
0
 public CouponType ThirdCouponType()
 {
     var thirdCouponType = new CouponType
     {
         CouponTypeId = (int)DisountType.Values.FixedAmount,
         CouponTypeValue = DisountType.Values.FixedAmount.ToString()
     };
     return thirdCouponType;
 }
Example #3
0
 public CouponType FirstCouponType()
 {
     var firstCouponType = new CouponType
     {
         CouponTypeId = (int)DisountType.Values.PercentageOff,
         CouponTypeValue = DisountType.Values.PercentageOff.ToString()
     };
     return firstCouponType;
 }