Example #1
0
 public ImageryService(MeshService meshService,
                       IOptions <AppSecrets> appSecrets,
                       IOptions <DEMNetOptions> options,
                       ImageryCache cache,
                       ILogger <ImageryService> logger = null)
 {
     _logger         = logger;
     _meshService    = meshService;
     this.appSecrets = appSecrets?.Value;
     this.options    = options?.Value;
     this.cache      = cache;
 }