public EnqueueBatchOperationCommandHandler(IWorkerOperationRepository repository, IWorkerManager workerManager)
 {
     this.repository    = repository;
     this.workerManager = workerManager;
 }
Beispiel #2
0
 public BatchOperationWorker(IWorkerOperationRepository repository, IEnumerable <IWorkerOperationHandler> handlers)
 {
     this.repository = repository;
     this.handlers   = handlers;
 }