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.

12 lines
334 B

  1. import { LabelItemList } from '@/models/label'
  2. import { LabelItemListRepository } from '@/repositories/label/interface'
  3. export class LabelApplicationService {
  4. constructor(
  5. private readonly repository: LabelItemListRepository
  6. ) {}
  7. public list(id: string): Promise<LabelItemList> {
  8. return this.repository.list(id)
  9. }
  10. }