Example #1
0
 public TerrainController(IMemoryCache cache, IExampleRestClient restClient, IFileProcessingChannel channel, IHelper Helper)
 {
     _cache      = cache;
     _restClient = restClient;
     _channel    = channel;
     _Helper     = Helper;
 }
Example #2
0
 public UploadFileService(IFileProcessingChannel channel, IExampleRestClient restClient)
 {
     _channel    = channel;
     _restClient = restClient;
 }
 public UploadFileService(IFileProcessingChannel channel, IServiceScopeFactory scopeFactory)
 {
     _channel = channel;
     //_restClient = restClient;
     _scopeFactory = scopeFactory;
 }