public PromotionReward[] GetRewards()
		{
			var retVal = new ShipmentReward
			{
				Amount = Amount,
				AmountType = RewardAmountType.Relative,
				ShippingMethod = ShippingMethod
			};
			return new PromotionReward[] { retVal };
		}
Example #2
0
		//Copy constructor
		protected ShipmentReward(ShipmentReward other)
			:base(other)
		{
			ShippingMethod = other.ShippingMethod;
		}
Example #3
0
 //Copy constructor
 protected ShipmentReward(ShipmentReward other)
     : base(other)
 {
     ShippingMethod       = other.ShippingMethod;
     ShippingMethodOption = other.ShippingMethodOption;
 }