public double ApplyDiscount(double amount, IDiscountStrategy strategy)
 {
     return(strategy.MakeDeduction(amount));
 }