示例#1
0
 public TerrainController(IMemoryCache cache, IExampleRestClient restClient, IFileProcessingChannel channel, IHelper Helper)
 {
     _cache      = cache;
     _restClient = restClient;
     _channel    = channel;
     _Helper     = Helper;
 }
 //public TerrainController(IMemoryCache cash, IExampleRestClient restClient, IFileKeyCreator creator, FileProcessingChannel channel)
 public TerrainController(IMemoryCache cash, IExampleRestClient restClient, IFileKeyCreator creator, IFileProcessing channel)
 {
     _cash       = cash;
     _restClient = restClient;
     _creator    = creator;
     _channel    = channel;
 }
 public ScopeLoadService(IMemoryCache cash, IExampleRestClient restClient, IOptions <MemmoryCashConfig> option, IFileKeyCreator creator)
 {
     _cash       = cash;
     _restClient = restClient;
     _option     = option;
     _creator    = creator;
 }
示例#4
0
 public UploadFileService(IFileProcessingChannel channel, IExampleRestClient restClient)
 {
     _channel    = channel;
     _restClient = restClient;
 }