public LicenseSignatureWebSocketService(ILicenseQueueService queueService, ILicenseStorageService storageService, IMapper mapper, IApplicationLifetime appLifetime)
 {
     _queueService   = queueService;
     _storageService = storageService;
     _appStoppingCancellationToken = appLifetime.ApplicationStopping;
     _mapper = mapper;
 }
Example #2
0
 public LicensingController(ILogger <LicensingController> logger, ILicenseQueueService queueService, ILicenseStorageService storageService, IMapper mapper)
 {
     _logger         = logger;
     _queueService   = queueService;
     _storageService = storageService;
     _mapper         = mapper;
 }