mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 10:39:51 +07:00
10 lines
204 B
Python
10 lines
204 B
Python
class Payout:
|
|
@classmethod
|
|
def create(cls, teacher_id, entries):
|
|
payout = cls()
|
|
# payout.teacher = Teacher(teacher_id)
|
|
payout.save() # ok
|
|
|
|
def save(self):
|
|
pass
|