organization.service.ts 325 B

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