Model/backend/categorisation/categorisation_logic.py

12 lines
329 B
Python

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