50 lines
1.8 KiB
Python
50 lines
1.8 KiB
Python
# Lucas Mathews - Fontys Student ID: 5023572
|
|
# Banking System Client Class
|
|
|
|
from sqlalchemy import Column, String, Boolean
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from class_base import Base
|
|
|
|
class Client(Base):
|
|
__tablename__ = 'clients'
|
|
client_id = Column("client_id", String, primary_key=True)
|
|
name = Column("name", String)
|
|
birthdate = Column("birthdate", String)
|
|
opening_timestamp = Column("opening_timestamp", String)
|
|
address = Column("address", String)
|
|
phone_number = Column("phone_number", String)
|
|
email = Column("email", String)
|
|
hash = Column("hash", String)
|
|
notes = Column("notes", String)
|
|
enabled = Column("enabled", Boolean)
|
|
administrator = Column("administrator", Boolean)
|
|
accounts = relationship("Account", backref="client")
|
|
|
|
def __init__(self, client_id, name, birthdate, opening_timestamp, address, phone_number, email, hash, notes, enabled, administrator, accounts):
|
|
"""Initialises the client object."""
|
|
self.client_id = client_id
|
|
self.name = name
|
|
self.birthdate = birthdate
|
|
self.opening_timestamp = opening_timestamp
|
|
self.address = address
|
|
self.phone_number = phone_number
|
|
self.email = email
|
|
self.hash = hash
|
|
self.notes = notes
|
|
self.enabled = enabled
|
|
self.administrator = administrator
|
|
self.accounts = accounts if accounts is not None else []
|
|
|
|
def to_dict(self):
|
|
"""Returns the client as a dictionary."""
|
|
return {
|
|
"client_id": self.client_id,
|
|
"name": self.name,
|
|
"birthdate": self.birthdate,
|
|
"opening_timestamp": self.opening_timestamp,
|
|
"address": self.address,
|
|
"phone_number": self.phone_number,
|
|
"email": self.email,
|
|
}
|
|
|