Files
leistungsbilanz-ts/src/domain/ports/external-object-row-assignment-project-command.store.ts
T

20 lines
754 B
TypeScript

import type { ExternalObjectRowAssignmentProjectCommand } from "../models/external-object-row-assignment-project-command.model.js";
import type { AppendedProjectRevision, ProjectRevisionSource } from "./project-revision.store.js";
export interface ExecuteExternalObjectRowAssignmentCommandInput {
projectId: string;
expectedRevision: number;
source: ProjectRevisionSource;
description?: string;
actorId?: string;
historyTargetChangeSetId?: string;
command: ExternalObjectRowAssignmentProjectCommand;
}
export interface ExternalObjectRowAssignmentProjectCommandStore {
execute(input: ExecuteExternalObjectRowAssignmentCommandInput): {
revision: AppendedProjectRevision;
inverse: ExternalObjectRowAssignmentProjectCommand;
};
}