8 lines
126 B
Python
8 lines
126 B
Python
from sqlalchemy.orm import Session
|
|
|
|
|
|
class PricingService:
|
|
def __init__(self, db: Session):
|
|
self.db = db
|
|
|
|
|