diff --git a/src/controllers/employee-controller.ts b/src/controllers/employee-controller.ts index e24969a..ed46e4e 100644 --- a/src/controllers/employee-controller.ts +++ b/src/controllers/employee-controller.ts @@ -101,14 +101,15 @@ type EmployeeCreate = { citizenId?: string | null; fatherFirstName?: string | null; fatherLastName?: string | null; + fatherBirthPlace?: string | null; motherFirstName?: string | null; motherLastName?: string | null; + motherBirthPlace?: string | null; fatherFirstNameEN?: string | null; fatherLastNameEN?: string | null; motherFirstNameEN?: string | null; motherLastNameEN?: string | null; - birthPlace?: string | null; }; };