public PromotionReward[] GetRewards()
        {
            var retVal = new CartSubtotalReward()
            {
                Amount     = Amount,
                AmountType = RewardAmountType.Absolute
            };

            return(new PromotionReward[] { retVal });
        }
Exemplo n.º 2
0
        public PromotionReward[] GetRewards()
        {
            var retVal = new CartSubtotalReward
            {
                Amount     = Amount,
                AmountType = RewardAmountType.Relative,
                MaxLimit   = MaxLimit
            };

            return(new PromotionReward[] { retVal });
        }