25 lines
775 B
TypeScript
25 lines
775 B
TypeScript
import type { WearableViewModel } from "@/viewmodels/admin/unit/wearable/wearable.models";
|
|
import { wearableTypeDemoData } from "./wearableType";
|
|
|
|
export const wearableDemoData: Array<WearableViewModel> = [
|
|
{
|
|
id: "absdfgc",
|
|
code: "0456984224498",
|
|
name: "Jacke",
|
|
location: "Spint",
|
|
commissioned: new Date(),
|
|
decommissioned: undefined,
|
|
wearerId: "9469991d-fa22-4899-82ce-b1ba5de990dc",
|
|
wearer: {
|
|
id: "9469991d-fa22-4899-82ce-b1ba5de990dc",
|
|
salutation: { id: 3, salutation: "Herr" },
|
|
firstname: "Julian",
|
|
lastname: "Krauser",
|
|
nameaffix: "",
|
|
birthdate: new Date("2003-09-20"),
|
|
internalId: "1312",
|
|
},
|
|
wearableTypeId: wearableTypeDemoData[0].id,
|
|
wearableType: wearableTypeDemoData[0],
|
|
},
|
|
];
|