def getCustomersByBTFID(dlrID):
    response = btc.getRequestResponseXML(BTF_CUSTOMER_BY_BTF_NUM + dlrID)
    customerList = btrp.parseCustomersXML(response)
    return customerList
def getAllCustomers():
    response = btc.getRequestResponseXML(BTF_CUSTOMER)
    customerList = btrp.parseCustomersXML(response)
    return customerList
def getCustomersByName(companyName):
    response = btc.getRequestResponseXML(BTF_CUSTOMER_BY_NAME + companyName)
    customerList = btrp.parseCustomersXML(response)
    return customerList