Endpoints NOS

This commit is contained in:
2026-04-21 10:11:21 +02:00
parent 32990b4dcd
commit e62c49ce91
13 changed files with 292 additions and 10 deletions

View File

@@ -56,4 +56,23 @@ export class SimNosUsecases {
throw new Error("No hay termination para NOS")
}
public async selectOne(args: {
iccid: string
}) {
const res = await this.nosRepository.getLineInfo(args.iccid)
return res
}
public async selectPage(args: {
}) {
const res = await this.nosRepository.getLinePage(args)
return res
}
public selectMany(args: {
iccid: string[]
}) {
return {}
}
}