import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Patientprofile } from './entities/patient-profile.entity';
import { PatientprofileService } from './patient-profile.service';
import { PatientprofileController } from './patient-profile.controller';
import { DynamicDatabaseService } from 'src/dynamic_db.service';

@Module({
  imports: [TypeOrmModule.forFeature([Patientprofile])],
  providers: [PatientprofileService, DynamicDatabaseService],
  controllers: [PatientprofileController],
})
export class PatientprofileModule {}
