EmploymentInfo constructor
Implementation
EmploymentInfo({
int? startDate,
int? endDate,
CodeStub? professionType,
Employer? employer
}) : startDate = startDate ?? null,
endDate = endDate ?? null,
professionType = professionType ?? null,
employer = employer ?? null;