def get(self, log_id): '''Read interaction''' action = ReadRecord(endpoint='practitioner', log_id=log_id) return action.record
def get(self, log_id): '''Read interaction''' action = ReadRecord(endpoint='organization', log_id=log_id) return action.record
def get(self, log_id): action = ReadRecord(endpoint='immunization', log_id=log_id) return action.record
def get(self, log_id): '''Read interaction''' # NOTE We search from patient, not family_history action = ReadRecord(endpoint='family_history', log_id=log_id) return action.record
def get(self, log_id): '''Read interaction''' action = ReadRecord(endpoint='medication_statement', log_id=log_id) return action.record
def get(self, log_id): action = ReadRecord(endpoint='diagnostic_report', log_id=log_id) return action.record