def Get_all_transaction(id_client): return Transaction.select().where(Transaction.ID_client == id_client)
def get_system_log(self): ''' Retrieves all of the transactions from the system ''' return Transaction.select()