public bool Delete(MeasurementDeleteCommand command)
 {
     return(TracedOperation.CallSync
            (
                _logger,
                MeasurementOperationType.DeleteMeasurement,
                command,
                () => _repository.DeleteById(command.Id)
            ));
 }