Exemplo n.º 1
0
 public DummyMapperJob(
     IBatchJobClient batchJobClient,
     IResourceRepository resourceRepository,
     INotificationRepository notificationRepository)
     : base(batchJobClient)
 {
     _resourceRepository     = resourceRepository;
     _notificationRepository = notificationRepository;
 }
Exemplo n.º 2
0
 protected MapperJob(IBatchJobClient batchJobClient)
 {
     _batchJobClient = batchJobClient;
 }
 public BackgroundJobManager(IBackgroundJobClient client, IBatchJobClient batchClient)
 {
     _client      = client;
     _batchClient = batchClient;
 }