diff options
Diffstat (limited to 'sandbox/travelsample/contributions/payment-spring/src/main/resources/Payment-context.xml')
-rw-r--r-- | sandbox/travelsample/contributions/payment-spring/src/main/resources/Payment-context.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sandbox/travelsample/contributions/payment-spring/src/main/resources/Payment-context.xml b/sandbox/travelsample/contributions/payment-spring/src/main/resources/Payment-context.xml index c79abdb6ba..f27280bf2f 100644 --- a/sandbox/travelsample/contributions/payment-spring/src/main/resources/Payment-context.xml +++ b/sandbox/travelsample/contributions/payment-spring/src/main/resources/Payment-context.xml @@ -26,10 +26,14 @@ <bean id="Payment" class="com.tuscanyscatours.payment.impl.PaymentImpl"> <property name="creditCardPayment" ref="creditCardPaymentReference"/> <property name="emailGateway" ref="EmailGateway"/> + <property name="customerRegistry" ref="CustomerRegistry"/> <property name="transactionFee" value="0.5f"/> </bean> - <bean id="EmailGateway" class="com.tuscanyscatours.emailgateway.impl.EmailGatewayImpl"> + <bean id="CustomerRegistry" class="com.tuscanyscatours.customer.impl.CustomerRegistryImpl"> </bean> + + <bean id="EmailGateway" class="com.tuscanyscatours.emailgateway.impl.EmailGatewayImpl"> + </bean> </beans> |