refactor: by value form employee and customer

This commit is contained in:
Thanaphon Frappet 2024-10-01 14:27:42 +07:00
parent 9aee87776f
commit d44dfa48ab
2 changed files with 703 additions and 377 deletions

File diff suppressed because it is too large Load diff

View file

@ -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;
};