Exemplo n.º 1
0
 public CheckoutController(IGatewayAuthenticationService gatewayAuthenticationService, IGatewayCheckoutService gatewayChekoutService, ICompleteOrderService completeOrderService)
 {
     _gatewayAuthenticationService = gatewayAuthenticationService;
     _gatewayChekoutService        = gatewayChekoutService;
     _completeOrderService         = completeOrderService;
 }
Exemplo n.º 2
0
 public RefundController(IGatewayAuthenticationService gatewayAuthenticationService, IGatewayRefundService gatewayRefundService)
 {
     _gatewayAuthenticationService = gatewayAuthenticationService;
     _gatewayRefundService         = gatewayRefundService;
 }