예제 #1
0
 public CardProvider(HttpContextBase httpContext, IGatewayLuncher gatewayLuncher, IGTPayCurrencyService supportedCurrencyService, ILocalizationService localizationService)
 {
     _httpContext              = httpContext;
     _gatewayLuncher           = gatewayLuncher;
     _supportedCurrencyService = supportedCurrencyService;
     _localizationService      = localizationService;
 }
예제 #2
0
 public Plugin(ICommonServices services,
               IGTPayCurrencyService supportedCurrencyService,
               ITransactionStatusService transactionStatusService,
               ILocalizationService localizationService,
               ISettingService settingService,
               ILogger logger)
 {
     _services = services;
     _transactionStatusService = transactionStatusService;
     _supportedCurrencyService = supportedCurrencyService;
     _localizationService      = localizationService;
     _settingService           = settingService;
     _logger = logger;
 }