????

Your IP : 216.73.216.131


Current Path : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/dist/apps/audit-logs/
Upload File :
Current File : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/dist/apps/audit-logs/audit-logs.service.d.ts

import { TypeOrmCrudService } from '@dataui/crud-typeorm';
import { AuditLog } from './entities/audit-log.entity';
import { LogCayXanh } from '../log-cay-xanhs/entities/log-cay-xanh.entity';
import { DataSource, Repository } from 'typeorm';
import { HTCayXanh } from '../ht-cay-xanhs/entities/ht-cay-xanh.entity';
import { ClsService } from 'nestjs-cls';
import { CreateAuditLogDto } from './dto/create-audit-log.dto';
export declare class AuditLogService extends TypeOrmCrudService<AuditLog> {
    private logCayXanhRepo;
    private htCayXanhRepo;
    private dataSource;
    private readonly cls;
    constructor(repo: Repository<AuditLog>, logCayXanhRepo: Repository<LogCayXanh>, htCayXanhRepo: Repository<HTCayXanh>, dataSource: DataSource, cls: ClsService);
    auditLogCayXanh(dto: CreateAuditLogDto): Promise<{
        logId: number;
        tableName: string;
    }>;
}