public void SetDiscount(IDiscount discount)
 {
     if (discount != null)
         Price = discount.setDiscount(Price);
 }