apps/recallassess/recallassess-api/src/api/admin/report/report.service.ts
RecallAssess Report Service
Extends the shared BNestReportService.
Add any RecallAssess-specific report logic here if needed.
import { BNestReportService } from "@bish-nest/core/admin/modules/report/report.service";
import { Injectable } from "@nestjs/common";
/**
* RecallAssess Report Service
*
* Extends the shared BNestReportService.
*
* Add any RecallAssess-specific report logic here if needed.
*/
@Injectable()
export class ReportService extends BNestReportService {
// Add RecallAssess-specific report methods here if needed
}