2025-05-14 09:13:47 +02:00
|
|
|
import type { VehicleViewModel } from "@/viewmodels/admin/unit/vehicle/vehicle.models";
|
2025-05-11 16:44:16 +02:00
|
|
|
import { vehicleTypeDemoData } from "./vehicleType";
|
2025-03-26 16:56:07 +01:00
|
|
|
|
|
|
|
export const vehicleDemoData: Array<VehicleViewModel> = [
|
|
|
|
{
|
|
|
|
id: "kjhb",
|
2025-05-13 12:30:57 +02:00
|
|
|
code: "",
|
2025-03-26 16:56:07 +01:00
|
|
|
name: "HLF",
|
2025-05-11 16:44:16 +02:00
|
|
|
location: "Tor 1",
|
2025-05-21 09:10:41 +02:00
|
|
|
commissioned: new Date(),
|
|
|
|
decommissioned: undefined,
|
2025-05-14 14:42:00 +02:00
|
|
|
vehicleTypeId: vehicleTypeDemoData[0].id,
|
2025-05-11 16:44:16 +02:00
|
|
|
vehicleType: vehicleTypeDemoData[0],
|
2025-05-13 12:16:39 +02:00
|
|
|
inspections: [],
|
2025-03-26 16:56:07 +01:00
|
|
|
},
|
|
|
|
{
|
2025-05-14 14:42:00 +02:00
|
|
|
id: "kjhdfgb",
|
2025-05-13 12:30:57 +02:00
|
|
|
code: "",
|
2025-03-26 16:56:07 +01:00
|
|
|
name: "LF",
|
2025-05-11 16:44:16 +02:00
|
|
|
location: "Tor 2",
|
2025-05-21 09:10:41 +02:00
|
|
|
commissioned: new Date(),
|
|
|
|
decommissioned: undefined,
|
2025-05-14 14:42:00 +02:00
|
|
|
vehicleTypeId: vehicleTypeDemoData[1].id,
|
2025-05-11 16:44:16 +02:00
|
|
|
vehicleType: vehicleTypeDemoData[1],
|
2025-05-13 12:16:39 +02:00
|
|
|
inspections: [],
|
2025-03-26 16:56:07 +01:00
|
|
|
},
|
|
|
|
];
|