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