Update app/crud.py
This commit is contained in:
parent
20d41c561d
commit
98c347cc39
1 changed files with 3 additions and 0 deletions
|
|
@ -6,3 +6,6 @@ def get_customers(db: Session):
|
||||||
|
|
||||||
def get_accounts(db: Session):
|
def get_accounts(db: Session):
|
||||||
return db.query(models.Account).all()
|
return db.query(models.Account).all()
|
||||||
|
|
||||||
|
def get_transactions(db: Session):
|
||||||
|
return db.query(models.Transactions).all()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue