service clean up

This commit is contained in:
hannathkadher
2024-12-23 08:44:10 +04:00
parent 2dd48b7bc2
commit 5d4f04611f
17 changed files with 8 additions and 860 deletions

View File

@ -1,18 +1,10 @@
import {
SubspaceModelEntity,
SubspaceProductItemModelEntity,
SubspaceProductModelEntity,
} from '@app/common/modules/space-model';
import { SubspaceModelEntity } from '@app/common/modules/space-model';
export interface AddSubspaceModelInterface {
subspaceModel: SubspaceModelEntity;
productModels: ProductModelInterface[];
}
export interface ProductModelInterface {
productModel: SubspaceProductModelEntity;
productItemModels: SubspaceProductItemModelEntity[];
}
export interface ProductModelInterface {}
export interface IModifySubspaceModelInterface {
spaceModelUuid: string;
@ -22,8 +14,6 @@ export interface IModifySubspaceModelInterface {
}
export interface IModifiedProductItemsModelsInterface {
new?: SubspaceProductItemModelEntity[];
update?: SubspaceProductItemModelEntity[];
delete?: string[];
}