public RecordMeasurementsCommandHandler(IUnitOfWork unitOfWork, IEdgeIntegrationEventLogService edgeIntegrationEventLogService,
                                         ILogger <RecordMeasurementsCommandHandler> logger)
 {
     _unitOfWork = unitOfWork;
     _edgeIntegrationEventLogService = edgeIntegrationEventLogService;
     _logger = logger;
 }
示例#2
0
 public TransactionBehavior(EdgeDbContext context, IEdgeIntegrationEventLogService integrationEventService)
 {
     _dbContext = context;
     _edgeIntegrationEventService = integrationEventService;
 }