2024-01-01 20:19:57 +00:00
|
|
|
from .user import User
|
2023-12-31 16:27:39 +00:00
|
|
|
|
|
|
|
class Seller(User):
|
|
|
|
'''
|
|
|
|
Class constructor to instatiate a Seller object
|
|
|
|
'''
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.store = ""
|
|
|
|
|
2024-01-01 20:19:57 +00:00
|
|
|
def login(self):
|
2023-12-31 16:27:39 +00:00
|
|
|
print("Logging in as Seller")
|
|
|
|
|
2024-01-01 20:19:57 +00:00
|
|
|
def signup(self):
|
2023-12-31 16:27:39 +00:00
|
|
|
print("Signing up as Seller")
|
|
|
|
|
|
|
|
def createProduct():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def deleteProduct():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def updateProduct():
|
|
|
|
pass
|
|
|
|
|