Added foundation of a simple mock-api

This commit is contained in:
Erik Tiekstra
2021-03-24 15:25:38 +01:00
committed by Erik Tiekstra
parent 81ac40ef31
commit e1b8979b99
28 changed files with 3807 additions and 33 deletions
@@ -0,0 +1,5 @@
export enum Service {
KVL = 'KVL',
KROM = 'KROM',
STOM = 'STOM',
}
@@ -0,0 +1,9 @@
import { Service } from '@dafa-enums/service.enum';
export interface Participant {
id: number;
firstName: string;
lastName: string;
service: Service;
errandNumber: number;
}
@@ -0,0 +1,6 @@
import { Participant } from './participant.model';
export interface SortBy {
key: keyof Participant;
reverse: boolean;
}