def getDoctorTitle(instance):
    return get_attr_from_field(instance, 'Doctor', 'Title', '')
def getDoctorUID(instance):
    return get_attr_from_field(instance, 'Doctor', 'UID', '')
def getClientPatientID(instance):
    return get_attr_from_field(instance, 'Patient', 'ClientPatientID', '')
def getPatientID(instance):
    return get_attr_from_field(instance, 'Patient', 'getId', '')
def getPatientTitle(instance):
    return get_attr_from_field(instance, 'Patient', 'Title', '')
def getPatientUID(instance):
    return get_attr_from_field(instance, 'Patient', 'UID', '')