Created a set of base models to begin fleshing out the data aspect of the application
This commit is contained in:
17
models/users/customer.py
Normal file
17
models/users/customer.py
Normal file
@@ -0,0 +1,17 @@
|
||||
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")
|
||||
|
||||
Reference in New Issue
Block a user