You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
581 B
TypeScript
18 lines
581 B
TypeScript
import { Controller } from '@nestjs/common';
|
|
import { PcdFormGridController } from 'src/framework/beans/pcd-form-grid.controller';
|
|
import { FileFormatRepository } from './file-format-lov.repository';
|
|
import { FileFormatLovDto } from 'src/dto/file-format-lov.dto';
|
|
import { FileFormatLovService } from './file-format-lov.service';
|
|
|
|
@Controller('file-format-lov')
|
|
export class FileFormatLovController extends PcdFormGridController<FileFormatLovDto>{
|
|
|
|
constructor(
|
|
private fileFormatLovService: FileFormatLovService
|
|
) {
|
|
super(fileFormatLovService);
|
|
}
|
|
|
|
}
|
|
|