//public decimal NewPrice { get; set; }
 //public string Reason { get; set; }
 public PriceAdjustment(AdjustPrice adjustPrice, decimal oldPrice)
 {
     OldPrice = oldPrice;
     NewPrice = adjustPrice.NewPrice;
     Reason   = adjustPrice.Reason;
 }