public double GetActualAmount(GiftCard giftCard, double bonusRate)
 {
     return giftCard.Amount * (1 + bonusRate);
 }