26 lines
421 B
Python
26 lines
421 B
Python
|
from user import User
|
||
|
|
||
|
class Seller(User):
|
||
|
'''
|
||
|
Class constructor to instatiate a Seller object
|
||
|
'''
|
||
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
self.store = ""
|
||
|
|
||
|
def login():
|
||
|
print("Logging in as Seller")
|
||
|
|
||
|
def signup():
|
||
|
print("Signing up as Seller")
|
||
|
|
||
|
def createProduct():
|
||
|
pass
|
||
|
|
||
|
def deleteProduct():
|
||
|
pass
|
||
|
|
||
|
def updateProduct():
|
||
|
pass
|
||
|
|