18 lines
351 B
Python
18 lines
351 B
Python
|
from user import User
|
||
|
|
||
|
class Customer(User):
|
||
|
'''
|
||
|
Class constructor to instatiate a customer object
|
||
|
|
||
|
No additional properties are assigned to the customer
|
||
|
'''
|
||
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
|
||
|
def login():
|
||
|
print("Logging in as Customer")
|
||
|
|
||
|
def signup():
|
||
|
print("Signing up as Customer")
|
||
|
|