public async Task <ICollection <SensorDTO> > GetSensors()
        {
            var sensors = await _sensorService.GetAllSensorsAsync();

            var count = sensors.ToList().Count;

            _logger.LogInformation($"{count} {SensorsConstants.GET_SENSORS}");

            return(sensors);
        }