48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { BaseUpdateStatusManager } from 'src/core/modules/domain/usecase/managers/base-update-status.manager';
|
|
import { SeasonPeriodEntity } from '../../entities/season-period.entity';
|
|
import {
|
|
EventTopics,
|
|
validateRelations,
|
|
} from 'src/core/strings/constants/interface.constants';
|
|
import { SeasonPeriodModel } from '../../../data/models/season-period.model';
|
|
import { SeasonPeriodChangeStatusEvent } from '../../entities/event/season-period-change-status.event';
|
|
|
|
@Injectable()
|
|
export class InactiveSeasonPeriodManager extends BaseUpdateStatusManager<SeasonPeriodEntity> {
|
|
getResult(): string {
|
|
return `Success inactive data ${ this.result.id }`;
|
|
}
|
|
|
|
async validateProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
async beforeProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
async afterProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
get validateRelations(): validateRelations[] {
|
|
return [];
|
|
}
|
|
|
|
get entityTarget(): any {
|
|
return SeasonPeriodModel;
|
|
}
|
|
|
|
get eventTopics(): EventTopics[] {
|
|
return [
|
|
{
|
|
topic: SeasonPeriodChangeStatusEvent,
|
|
relations: [
|
|
'season_type'
|
|
]
|
|
},
|
|
];
|
|
}
|
|
}
|