aswi2021jmsd-gitlab4/src/dao/repository.py @ 86415c34
1 |
class IRepository: |
---|---|
2 |
def create(self, *args) -> bool: |
3 |
pass
|
4 |
|
5 |
def read(self, *args): |
6 |
pass
|
7 |
|
8 |
def update(self, *args) -> bool: |
9 |
pass
|
10 |
|
11 |
def delete(self, *args) -> bool: |
12 |
pass
|