Esempio n. 1
0
 public DbSyncService(
     IRedisCacheService redisCacheService,
     ITemperatureHumidityRepository temperatureHumidityRepository,
     IMotionDetectionRepository motionDetectionRepository)
 {
     this.redisCacheService             = redisCacheService;
     this.motionDetectionRepository     = motionDetectionRepository;
     this.temperatureHumidityRepository = temperatureHumidityRepository;
 }
Esempio n. 2
0
 public MotionDetectionService(IMapper mapper, IMotionDetectionRepository motionDetectionRepository) : base(mapper)
 {
     this.motionDetectionRepository = motionDetectionRepository;
 }