public PromotionReward[] GetRewards()
		{
			var retVal = new CartSubtotalReward()
			{
				Amount = Amount
			};
			return new PromotionReward[] { retVal };
		}
예제 #2
0
 //Copy constructor
 protected CartSubtotalReward(CartSubtotalReward other)
     : base(other)
 {
     Amount = other.Amount;
 }
예제 #3
0
		//Copy constructor
		protected CartSubtotalReward(CartSubtotalReward other)
			:base(other)
		{
			Amount = other.Amount;
		}