Model/backend/categorisation/categorisation_logic.py

12 lines
354 B
Python

from typing import List
from backend.app.db.models.recommendations import PlanModel
class CategorisationLogic:
@staticmethod
def get_compliant_plans(plans: List[PlanModel]) -> List[PlanModel]:
raise NotImplementedError
@staticmethod
def get_cheapest_plan(plans: List[PlanModel]) -> PlanModel:
raise NotImplementedError