2024-07-24 04:30:01 +08:00
|
|
|
from felicity.apps.abstract.repository import BaseRepository
|
2024-09-22 23:15:27 +08:00
|
|
|
from felicity.apps.analysis.entities.results import AnalysisResult, ResultMutation
|
2024-07-21 15:06:51 +08:00
|
|
|
|
|
|
|
|
2024-07-28 03:52:31 +08:00
|
|
|
class ResultMutationRepository(BaseRepository[ResultMutation]):
|
2024-07-21 15:06:51 +08:00
|
|
|
def __init__(self) -> None:
|
2024-07-22 16:20:56 +08:00
|
|
|
super().__init__(ResultMutation)
|
2024-07-21 15:06:51 +08:00
|
|
|
|
|
|
|
|
2024-07-22 16:20:56 +08:00
|
|
|
class AnalysisResultRepository(BaseRepository[AnalysisResult]):
|
2024-07-21 15:06:51 +08:00
|
|
|
def __init__(self) -> None:
|
2024-07-22 16:20:56 +08:00
|
|
|
super().__init__(AnalysisResult)
|