section
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { EntityManager, EntityRepository } from '@mikro-orm/postgresql';
|
||||
import { FieldOption } from '../entities/field-option.entity';
|
||||
|
||||
|
||||
@Injectable()
|
||||
export class FieldOptionRepository extends EntityRepository<FieldOption> {
|
||||
constructor(readonly em: EntityManager) {
|
||||
super(em, FieldOption);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user