refactor: by value form employee and customer
This commit is contained in:
parent
9aee87776f
commit
d44dfa48ab
2 changed files with 703 additions and 377 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -300,3 +300,18 @@ export type QuotationPayload = {
|
|||
actorName: string;
|
||||
status: Status;
|
||||
};
|
||||
|
||||
export type EmployeeWorker = {
|
||||
alienReferencNumber: string;
|
||||
documentExpireDate: Date | undefined;
|
||||
lastNameEN: string;
|
||||
lastName: string;
|
||||
middleNameEN: string;
|
||||
middleName: string;
|
||||
firstNameEN: string;
|
||||
firstName: string;
|
||||
namePrefix: string;
|
||||
nationality: string;
|
||||
gender: string;
|
||||
dateOfBirth: Date;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue