public PaypalApiService(
     IPaypalSettingsService settingsService,
     IClock clock) {
     _settingsService = settingsService;
     _clock = clock;
     T = NullLocalizer.Instance;
 }
Example #2
0
 public PaypalApiService(
     IPaypalSettingsService settingsService,
     IClock clock)
 {
     _settingsService = settingsService;
     _clock           = clock;
     T      = NullLocalizer.Instance;
     Logger = NullLogger.Instance;
 }
 public AdminController(
     IPaypalSettingsService settingsService,
     IPaypalApiService apiService,
     IOrchardServices services) {
     _settingsService = settingsService;
     _apiService = apiService;
     Services = services;
     T = NullLocalizer.Instance;
 }
Example #4
0
 public AdminController(
     IPaypalSettingsService settingsService,
     IPaypalApiService apiService,
     IOrchardServices services)
 {
     _settingsService = settingsService;
     _apiService      = apiService;
     Services         = services;
     T = NullLocalizer.Instance;
 }
Example #5
0
 public AdminController(
     IPaypalSettingsService settingsService,
     IPaypalConnectionManager connectionManager,
     IOrchardServices services)
 {
     _settingsService   = settingsService;
     _connectionManager = connectionManager;
     Services           = services;
     T = NullLocalizer.Instance;
 }
Example #6
0
 public PaypalApiService(
     IPaypalSettingsService settingsService,
     IPaypalConnectionManager connectionManager,
     IClock clock)
 {
     _settingsService   = settingsService;
     _connectionManager = connectionManager;
     _clock             = clock;
     T      = NullLocalizer.Instance;
     Logger = NullLogger.Instance;
 }