示例#1
0
 public JobExecutor(
     ILogger <JobExecutor> logger,
     IServiceProvider services,
     IExecutionsCache executionsCache
     )
 {
     Services              = services;
     this._logger          = logger;
     this._executionsCache = executionsCache;
 }
示例#2
0
 public Job(IExecutionsCache executionsCache)
 {
     this._executionsCache = executionsCache;
 }