blob: b3996fac649ce220f8b296b7f85b1cda418e03f1 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import {IAPIStatementModel} from "../core";
export function createStatementModelMock(id: number, typeId: number = 1): IAPIStatementModel {
return {
id,
title: "Title " + id,
dueDate: "2019-09-10",
receiptDate: "2019-09-10",
finished: true,
typeId,
city: "Darmstadt",
district: "Heppenheim",
contactId: "ABCD"
};
}