add form to create employee

Reviewed-on: #18
Reviewed-by: Get in my car i have candy <huydw@proton.me>
This commit is contained in:
2025-01-09 09:59:01 +00:00
parent 10ead075a7
commit dc61810632
8 changed files with 141 additions and 8 deletions

View File

@ -1,10 +1,15 @@
import {Qualification} from "../Qualification";
export class Employee {
constructor(public id?: number,
public lastName?: string,
public firstName?: string,
public street?: string,
public postcode?: string,
public city?: string,
public phone?: string) {
constructor(
public id?: number,
public lastName?: string,
public firstName?: string,
public street?: string,
public postcode?: string,
public city?: string,
public phone?: string,
public skillSet?: Qualification[]
) {
}
}