def getAllByEmployeeKeyUrlSafe(employeeKeyUrlSafe):
     accounts = (
         AccountManager.query(AccountManager.employeeKeyUrlSafe == employeeKeyUrlSafe)
         .order(AccountManager.clientKeyUrlSafe)
         .fetch()
     )
     return accounts
 def getAll():
     accounts = AccountManager.query().order(AccountManager.clientKeyUrlSafe).fetch()
     return accounts