2025-03-26 16:56:07 +01: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",
|
|
|
|
vehicleTypeId: "xyz",
|
|
|
|
vehicleType: vehicleTypeDemoData[0],
|
2025-05-13 12:16:39 +02:00
|
|
|
inspections: [],
|
2025-03-26 16:56:07 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "kjhb",
|
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",
|
|
|
|
vehicleTypeId: "abc",
|
|
|
|
vehicleType: vehicleTypeDemoData[1],
|
2025-05-13 12:16:39 +02:00
|
|
|
inspections: [],
|
2025-03-26 16:56:07 +01:00
|
|
|
},
|
|
|
|
];
|