コード例 #1
0
ファイル: payments.py プロジェクト: hahnicity/bamboo
 def get_last_payment(cls, session):
     """
     Get the id of the last payment made
     """
     return get_last_id(cls, session)
コード例 #2
0
 def get_last_user_id(cls, session):
     """
     Get the number of rows in the customer table
     """
     return get_last_id(cls, session)
コード例 #3
0
 def get_last_due_id(cls, session):
     """
     Get the number of entries in this table
     """
     return get_last_id(cls, session)