Ejemplo n.º 1
0
 public CertificatePrintStatusUpdateHandler(ICertificateRepository certificateRepository,
                                            ICertificateBatchLogRepository certificateBatchLogRepository,
                                            IMediator mediator, ILogger <CertificatePrintStatusUpdateHandler> logger)
 {
     _certificateRepository         = certificateRepository;
     _certificateBatchLogRepository = certificateBatchLogRepository;
     _mediator = mediator;
     _logger   = logger;
 }
Ejemplo n.º 2
0
 public UpdateBatchLogReadyToPrintAddCertificatesHandler(
     ICertificateBatchLogRepository certificateBatchLogRepository,
     ICertificateRepository certificateRepository,
     IUnitOfWork unitOfWork,
     ILogger <UpdateBatchLogReadyToPrintAddCertificatesHandler> logger)
 {
     _certificateBatchLogRepository = certificateBatchLogRepository;
     _certificateRepository         = certificateRepository;
     _unitOfWork = unitOfWork;
     _logger     = logger;
 }