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 { constructor() { super(db,ObjectType.TRAIN_CONTENT,true); } }