public SignboardLogsController(IDeviceLogRepository deviceLogRepository) 
 {
     DeviceLogRepository = deviceLogRepository;
 }
 public LogFilesController(IDeviceLogRepository deviceLogRepository) 
 {
     DeviceLogRepository = deviceLogRepository;
 }
Example #3
0
 public DeviceLogService(IDeviceLogRepository dlr, IMapper mapper, ILogger <DeviceLogService> log)
 {
     this._dlr    = dlr;
     this._mapper = mapper;
     this._log    = log;
 }
Example #4
0
 public DeviceLogService(IDeviceLogRepository deviceLogRepository, IMapper mapper, IEventHubService eventHubService)
 {
     _deviceLogRepository = deviceLogRepository;
     _mapper          = mapper;
     _eventHubService = eventHubService;
 }
 public DeviceLogAdapter(IDeviceLogRepository deviceLogRepository) : base(new IOTLoggerEntities1())
 {
     this._deviceLogRepository = deviceLogRepository;
 }