public BingProcessor(
     IImportConfig config,
     IJ4JLogger?logger
     )
     : base(config, ProcessorType.Bing, logger)
 {
     Type = GeoExtensions.GetTargetType <RouteProcessorAttribute>(GetType()) !.Type;
 }
Beispiel #2
0
 public GPXImporter(
     IImportConfig config,
     IJ4JLogger?logger = null
     )
     : base(config, logger)
 {
     Type = GeoExtensions.GetTargetType <ImporterAttribute>(GetType()) !.Type;
 }
 protected CloudRouteProcessor(
     IImportConfig config,
     ProcessorType processorType,
     IJ4JLogger?logger)
     : base(config, processorType, logger)
 {
     APIKey = config.APIKey;
 }