You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
900 B

import { AnnotationApplicationService } from './annotationService'
import { TextClassificationItem } from '~/models/tasks/textClassification'
export class TextClassificationDTO {
id: number
label: number
user: number
constructor(item: TextClassificationItem) {
this.id = item.id
this.label = item.label
this.user = item.user
}
}
export class TextClassificationApplicationService extends AnnotationApplicationService<TextClassificationItem> {
public async list(projectId: string, docId: number): Promise<TextClassificationDTO[]> {
const items = await this.repository.list(projectId, docId)
return items.map(item => new TextClassificationDTO(item))
}
public async create(projectId: string, docId: number, labelId: number): Promise<void> {
const item = new TextClassificationItem(0, labelId, 0)
await this.repository.create(projectId, docId, item)
}
}