Ejemplo n.º 1
0
 def getAllByEmployeeKeyUrlSafe(employeeKeyUrlSafe):
     accounts = (
         AccountManager.query(AccountManager.employeeKeyUrlSafe == employeeKeyUrlSafe)
         .order(AccountManager.clientKeyUrlSafe)
         .fetch()
     )
     return accounts
Ejemplo n.º 2
0
 def getAll():
     accounts = AccountManager.query().order(AccountManager.clientKeyUrlSafe).fetch()
     return accounts