public ConfigurationController(
     [NotNull] IMerchantConfigurationService configurationService,
     [NotNull] ILogFactory logFactory)
 {
     _configurationService = configurationService;
     _log = logFactory.CreateLog(this);
 }
Beispiel #2
0
 public ValidationService(
     [NotNull] IMerchantConfigurationService configurationService,
     [NotNull] IComponentContext componentContext)
 {
     _configurationService = configurationService;
     _componentContext     = componentContext;
 }