feat: integrate PowerClamp service and repositories across multiple modules

This commit is contained in:
faris Aljohari
2025-04-24 02:14:58 +03:00
parent 531f93d42c
commit 7f43ef5de5
11 changed files with 104 additions and 1 deletions

View File

@ -60,6 +60,12 @@ import {
SceneRepository,
} from '@app/common/modules/scene/repositories';
import { AutomationRepository } from '@app/common/modules/automation/repositories';
import { PowerClampService } from '@app/common/helper/services/power.clamp.service';
import {
PowerClampDailyRepository,
PowerClampHourlyRepository,
PowerClampMonthlyRepository,
} from '@app/common/modules/power-clamp/repositories';
const CommandHandlers = [CreateOrphanSpaceHandler];
@ -112,6 +118,10 @@ const CommandHandlers = [CreateOrphanSpaceHandler];
SceneRepository,
AutomationRepository,
SubspaceModelProductAllocationRepoitory,
PowerClampService,
PowerClampHourlyRepository,
PowerClampDailyRepository,
PowerClampMonthlyRepository,
],
exports: [ProjectService, CqrsModule],
})