Renamed staff to employees

This commit is contained in:
Erik Tiekstra
2021-05-04 14:44:48 +02:00
parent e56b92c0d9
commit 067b25c3aa
27 changed files with 289 additions and 287 deletions

View File

@@ -0,0 +1,27 @@
import { Agency } from '@dafa-models/agency.model';
import { Participant } from './participant.model';
export interface Employee {
id: string;
employeeId: string;
firstName: string;
lastName: string;
utforandeverksamhet: string;
active: boolean;
service: string;
fullName?: string;
}
export interface EmployeeDetail extends Employee {
languages: string[];
outOfOffice: {
start: Date;
end: Date;
}[];
authorisations: string[];
phone: string;
email: string;
ssn: string;
agencies: Agency[];
participants: Participant[];
}