Example #1
0
 public CreditCardPaymentProcessor(IPaymentConnection paymentConnection)
 {
     _paymentConnection = paymentConnection;
 }
Example #2
0
        public void ProcessPayment(Subscription subscription)
        {
            IPaymentConnection paymentConnection = ServiceLocator.GetPaymentConnection();

            paymentConnection.MakeCreditCardPayment(subscription.CreditCardNumber, subscription.InitialFee);
        }