From 63528b1eff4f1ced9ab8c8044823bcc395f60265 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Mon, 7 Sep 2026 10:09:17 -0300 Subject: [PATCH] F3.1: integrar Inventario estructural --- api-v3/src/asset-master/asset-master.module.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api-v3/src/asset-master/asset-master.module.ts b/api-v3/src/asset-master/asset-master.module.ts index ff27e02..a729496 100644 --- a/api-v3/src/asset-master/asset-master.module.ts +++ b/api-v3/src/asset-master/asset-master.module.ts @@ -22,12 +22,15 @@ import { AssetOperationalRelationsService } from './asset-operational-relations. import { AssetRegistryController } from './asset-registry.controller'; import { AssetRegistryService } from './asset-registry.service'; import { FieldDiscoveryInspectionLinkService } from '../inspection-operations/field-discovery-inspection-link.service'; +import { InventoryStructureController } from './inventory-structure.controller'; +import { InventoryStructureService } from './inventory-structure.service'; @Module({ imports: [AuditModule], controllers: [ AssetTypesController, AssetsController, + InventoryStructureController, AssetGeometriesController, MapAssetsController, AssetHistoryController, @@ -40,6 +43,7 @@ import { FieldDiscoveryInspectionLinkService } from '../inspection-operations/fi providers: [ AssetTypesService, AssetsService, + InventoryStructureService, AssetGeometriesService, AssetHistoryService, AssetMediaService,