feat: working on creating parent card

This commit is contained in:
Abdalhamid Alhamad
2025-08-14 14:40:08 +03:00
parent c06086f899
commit e06642225a
29 changed files with 328 additions and 114 deletions

View File

@ -9,12 +9,7 @@ import { CustomerRepository } from './repositories/customer.repository';
import { CustomerService } from './services';
@Module({
imports: [
TypeOrmModule.forFeature([Customer]),
forwardRef(() => UserModule),
GuardianModule,
forwardRef(() => NeoLeapModule),
],
imports: [TypeOrmModule.forFeature([Customer]), GuardianModule, forwardRef(() => UserModule), NeoLeapModule],
controllers: [CustomerController],
providers: [CustomerService, CustomerRepository],
exports: [CustomerService],