10 lines
335 B
Python
10 lines
335 B
Python
|
|
from app.models import ClassificationModel
|
||
|
|
from app.repositories import ClassificationRepository
|
||
|
|
|
||
|
|
from . import BaseService
|
||
|
|
|
||
|
|
|
||
|
|
class ClassificationService(BaseService[ClassificationModel, ClassificationRepository]):
|
||
|
|
def __init__(self, repository: ClassificationRepository):
|
||
|
|
super().__init__(ClassificationModel, repository)
|