- construction/torre: Service + Controller for vertical buildings - construction/nivel: Service + Controller for floor levels - construction/departamento: Service + Controller for units - purchase/purchase-order-construction: Controller for PO extensions - purchase/supplier-construction: Controller for supplier extensions - quality/checklist: Controller for inspection templates All endpoints follow existing patterns with multi-tenancy support. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
/**
|
|
* Construction Services Index
|
|
* @module Construction
|
|
*/
|
|
|
|
export * from './proyecto.service';
|
|
export * from './fraccionamiento.service';
|
|
export * from './etapa.service';
|
|
export * from './manzana.service';
|
|
export * from './lote.service';
|
|
export * from './prototipo.service';
|
|
export * from './torre.service';
|
|
export * from './nivel.service';
|
|
export * from './departamento.service';
|