import { GenericCrudService } from '../../utils/generic-crud.service'; import { DataSource } from 'typeorm'; import { Agent } from './agent.entity'; export class AgentService extends GenericCrudService { constructor(dataSource: DataSource) { super(dataSource, Agent); } }