mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
16 lines
481 B
Python
16 lines
481 B
Python
from typing import List
|
|
|
|
from backend.app.db.models.condition import PropertyConditionSurveyModel
|
|
from backend.condition.domain.property_condition_survey import PropertyConditionSurvey
|
|
|
|
|
|
class ConditionPostgres:
|
|
|
|
def insert_surveys(surveys: List[PropertyConditionSurvey]) -> None:
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def map_survey_to_model(
|
|
survey: PropertyConditionSurvey,
|
|
) -> PropertyConditionSurveyModel:
|
|
raise NotImplementedError
|