agent.service.ts 287 B

123456789
  1. import { GenericCrudService } from '../../utils/generic-crud.service';
  2. import { DataSource } from 'typeorm';
  3. import { Agent } from './agent.entity';
  4. export class AgentService extends GenericCrudService<Agent> {
  5. constructor(dataSource: DataSource) {
  6. super(dataSource, Agent);
  7. }
  8. }