origin/apps/server/src/models/section/section.service.ts

24 lines
579 B
TypeScript
Raw Normal View History

2025-02-06 16:32:52 +08:00
// import { Injectable } from '@nestjs/common';
// import { BaseService } from '../base/base.service';
// import {
// UserProfile,
// db,
// ObjectType,
// Prisma,
2024-12-31 15:57:32 +08:00
2025-02-06 16:32:52 +08:00
// } from '@nice/common';
// @Injectable()
// export class SectionService extends BaseService<Prisma.SectionDelegate> {
// constructor() {
// super(db, ObjectType.SECTION);
// }
2024-12-31 15:57:32 +08:00
2025-02-06 16:32:52 +08:00
// create(args: Prisma.SectionCreateArgs, params?: { staff?: UserProfile }) {
// return super.create(args)
// }
// async update(args: Prisma.SectionUpdateArgs) {
// return super.update(args);
// }
2025-01-03 09:24:46 +08:00
2025-02-06 16:32:52 +08:00
// }