Ejemplo n.º 1
0
 def get_last_payment(cls, session):
     """
     Get the id of the last payment made
     """
     return get_last_id(cls, session)
Ejemplo 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)
Ejemplo n.º 3
0
 def get_last_due_id(cls, session):
     """
     Get the number of entries in this table
     """
     return get_last_id(cls, session)