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