forked from xtu202105570201/libmangers
parent
2f18a343d8
commit
df9775a371
@ -1,3 +1,36 @@
|
|||||||
class Database(object):
|
class Database(object):
|
||||||
def connection(self):
|
def connection(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def init(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def addBook(self, unique_id, isbn, state):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def removeBook(self, unique_id):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def addUser(self, user_id, userpass_word, permission, nick_name):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def removeUser(self, unique_id):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def addBookInformation(self, isbn, author, description, price, made_time, image, category):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def removeBookInformation(self, isbn):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def brownBook(self, unique_id, brownuser):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def stillBook(self, unique_id):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def addCategory(self, category):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def removeCategory(self, category):
|
||||||
|
pass
|
Loading…
Reference in new issue