Esempio n. 1
0
 def get_last_payment(cls, session):
     """
     Get the id of the last payment made
     """
     return get_last_id(cls, session)
Esempio n. 2
0
 def get_last_user_id(cls, session):
     """
     Get the number of rows in the customer table
     """
     return get_last_id(cls, session)
Esempio n. 3
0
 def get_last_due_id(cls, session):
     """
     Get the number of entries in this table
     """
     return get_last_id(cls, session)