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