12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
|
import { Injectable } from "@nestjs/common";
|
||
|
import { BaseService } from "../base/base.service";
|
||
|
import { db, ObjectType, Prisma, UserProfile } from "@nice/common";
|
||
|
|
||
|
|
||
|
@Injectable()
|
||
|
export class TrainContentService extends BaseService<Prisma.TrainContentDelegate> {
|
||
|
constructor() {
|
||
|
super(db,ObjectType.TRAIN_CONTENT,true);
|
||
|
}
|
||
|
|
||
|
}
|